--- old/src/java.base/share/classes/sun/net/URLCanonicalizer.java 2015-06-05 21:17:11.911465452 +0400 +++ new/src/java.base/share/classes/sun/net/URLCanonicalizer.java 2015-06-05 21:17:11.747465452 +0400 @@ -28,10 +28,12 @@ /** * Helper class to map URL "abbreviations" to real URLs. * The default implementation supports the following mappings: + *
{@code
  *   ftp.mumble.bar/... => ftp://ftp.mumble.bar/...
  *   gopher.mumble.bar/... => gopher://gopher.mumble.bar/...
  *   other.name.dom/... => http://other.name.dom/...
  *   /foo/... => file:/foo/...
+ * }
* * Full URLs (those including a protocol name) are passed through unchanged. *