jdk/src/share/classes/javax/swing/JComponent.java
changeset 21592 da6abe91602a
parent 21278 ef8a3a2a72f2
child 21982 fd6e5fe509df
--- a/jdk/src/share/classes/javax/swing/JComponent.java	Fri Nov 01 21:45:02 2013 +0400
+++ b/jdk/src/share/classes/javax/swing/JComponent.java	Thu Nov 07 18:57:54 2013 +0400
@@ -4906,12 +4906,12 @@
     /**
      * Returns {@code true} if a paint triggered on a child component should cause
      * painting to originate from this Component, or one of its ancestors.
-     * <p/>
+     * <p>
      * Calling {@link #repaint} or {@link #paintImmediately(int, int, int, int)}
      * on a Swing component will result in calling
      * the {@link JComponent#paintImmediately(int, int, int, int)} method of
      * the first ancestor which {@code isPaintingOrigin()} returns {@code true}, if there are any.
-     * <p/>
+     * <p>
      * {@code JComponent} subclasses that need to be painted when any of their
      * children are repainted should override this method to return {@code true}.
      *