Executing the following code Url.create("http://013.xxx/");
is resolved with the following error:
java.net.MalformedURLException: We couldn't find any urls in string: http://013.xxx/
at com.linkedin.urls.Url.create(Url.java:69)
It looks like as if the utility treats the xxx part as invalid ip instead of a valid suffix.
Excepted result:
Url should be created, host should be 013.xxx
Executing the following code
Url.create("http://013.xxx/");
is resolved with the following error:It looks like as if the utility treats the xxx part as invalid ip instead of a valid suffix. Excepted result: Url should be created, host should be
013.xxx