--- old/src/share/classes/java/awt/Window.java 2013-09-23 12:23:23.361168924 +0400 +++ new/src/share/classes/java/awt/Window.java 2013-09-23 12:23:23.241168926 +0400 @@ -1093,7 +1093,6 @@ * Hide this Window, its subcomponents, and all of its owned children. * The Window and its subcomponents can be made visible again * with a call to {@code show}. - *

* @see #show * @see #dispose * @deprecated As of JDK version 1.5, replaced by @@ -3391,27 +3390,27 @@ * this property of the Window. *

* For example, after the following code is executed: - *

+ *
      * setLocationByPlatform(true);
      * setVisible(true);
      * boolean flag = isLocationByPlatform();
-     * 
+ * * The window will be shown at platform's default location and * {@code flag} will be {@code false}. *

* In the following sample: - *

+ *
      * setLocationByPlatform(true);
      * setLocation(10, 10);
      * boolean flag = isLocationByPlatform();
      * setVisible(true);
-     * 
+ * * The window will be shown at (10, 10) and {@code flag} will be * {@code false}. * * @param locationByPlatform {@code true} if this Window should appear * at the default location, {@code false} if at the current location - * @throws {@code IllegalComponentStateException} if the window + * @throws IllegalComponentStateException if the window * is showing on screen and locationByPlatform is {@code true}. * @see #setLocation * @see #isShowing