I am using list Uri[] in the next way: Uri[] uris := [example/] From the packed pod in the jar it looks like [null] instead of [example/].
Uri[] uris := [example/]
[null]
[example/]
You are missing the ticks :
Uri[] uris := [`example/`]
Thanks for response. But I just let go ticks here :) My example works properly inside the pod.
I have found workaround - using Uri constructor with Str parameter Uri("Str").
Uri("Str")
Login or Signup to reply.
zapletnev Mon 1 Oct 2012
I am using list Uri[] in the next way:
Uri[] uris := [example/]
From the packed pod in the jar it looks like[null]
instead of[example/]
.tcolar Mon 1 Oct 2012
You are missing the ticks :
zapletnev Mon 1 Oct 2012
Thanks for response. But I just let go ticks here :) My example works properly inside the pod.
zapletnev Tue 2 Oct 2012
I have found workaround - using Uri constructor with Str parameter
Uri("Str")
.