jdk/src/java.base/share/classes/sun/net/URLCanonicalizer.java
changeset 31061 fead7d86d75f
parent 25859 3317bb8137f4
--- a/jdk/src/java.base/share/classes/sun/net/URLCanonicalizer.java	Fri Jun 05 11:27:22 2015 -0700
+++ b/jdk/src/java.base/share/classes/sun/net/URLCanonicalizer.java	Mon Jun 08 16:37:53 2015 +0400
@@ -28,10 +28,12 @@
 /**
  * Helper class to map URL "abbreviations" to real URLs.
  * The default implementation supports the following mappings:
+ * <pre>{@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/...
+ * }</pre>
  *
  * Full URLs (those including a protocol name) are passed through unchanged.
  *