--- old/src/java.base/share/classes/java/net/URL.java 2018-11-26 13:32:48.658000000 -0800 +++ new/src/java.base/share/classes/java/net/URL.java 2018-11-26 13:32:48.490000000 -0800 @@ -95,7 +95,7 @@ * as a "ref" or a "reference". The fragment is indicated by the sharp * sign character "#" followed by more characters. For example, *
- *     http://java.sun.com/index.html#chapter1
+ *     http://www.example.com/index.html#chapter1
  * 
*

* This fragment is not technically part of the URL. Rather, it @@ -109,7 +109,7 @@ * relative to another URL. Relative URLs are frequently used within * HTML pages. For example, if the contents of the URL: *

- *     http://java.sun.com/index.html
+ *     http://www.example.com/index.html
  * 
* contained within it the relative URL: *
@@ -117,7 +117,7 @@
  * 
* it would be a shorthand for: *
- *     http://java.sun.com/FAQ.html
+ *     http://www.example.com/FAQ.html
  * 
*

* The relative URL need not specify all the components of a URL. If