jdk/src/share/classes/javax/swing/text/JTextComponent.java
changeset 410 4bc25999f850
parent 2 90ce3da70b43
child 466 6acd5ec503a8
--- a/jdk/src/share/classes/javax/swing/text/JTextComponent.java	Thu Apr 03 16:41:43 2008 +0400
+++ b/jdk/src/share/classes/javax/swing/text/JTextComponent.java	Mon Apr 07 13:07:04 2008 +0400
@@ -1349,11 +1349,6 @@
      * This is the method that is used by the default implementation
      * of the action for inserting content that gets bound to the
      * keymap actions.
-     * <p>
-     * This method is thread safe, although most Swing methods
-     * are not. Please see
-     * <A HREF="http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html">How
-     * to Use Threads</A> for more information.
      *
      * @param content  the content to replace the selection with
      */
@@ -1687,12 +1682,8 @@
      * or empty, has the effect of simply deleting the old text.
      * When text has been inserted, the resulting caret location
      * is determined by the implementation of the caret class.
+     *
      * <p>
-     * This method is thread safe, although most Swing methods
-     * are not. Please see
-     * <A HREF="http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html">How
-     * to Use Threads</A> for more information.
-     *
      * Note that text is not a bound property, so no <code>PropertyChangeEvent
      * </code> is fired when it changes. To listen for changes to the text,
      * use <code>DocumentListener</code>.