Skip to content

Commit 8626e94

Browse files
author
Vladimir Kotal
authored
fix argument quoting
1 parent bb13a8b commit 8626e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/opensolaris/opengrok/web/Util.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ public static String linkifyPattern(String text, Pattern pattern, String name, S
17401740
String buildLink = buildLink(name, url, true);
17411741
return pattern.matcher(text).replaceAll(buildLink);
17421742
} catch (URISyntaxException | MalformedURLException ex) {
1743-
LOGGER.log(Level.WARNING, "The given URL '{0}' is not valid", url);
1743+
LOGGER.log(Level.WARNING, "The given URL ''{0}'' is not valid", url);
17441744
return text;
17451745
}
17461746
}

0 commit comments

Comments
 (0)