Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,7 @@ private static String doResolveResource(final String parent_display, final Strin
return null;
}

/** Check if a resource doesn't just look like a URL
* but can actually be opened
/** Check if a resource can be opened as a URL
* @param resource_name Path to resource, presumably "http://.."
* @return <code>true</code> if indeed an exiting URL
*/
Expand All @@ -327,7 +326,6 @@ private static boolean canOpenUrl(final String resource_name)
}

if (! isURL(resource_name)) {
logger.log(Level.WARNING, "URL {0} is not a URL", new Object[] { resource_name });
return false;
}

Expand Down