jdk/src/share/classes/javax/swing/TransferHandler.java
changeset 20169 d7fa6d7586c9
parent 20130 5e4ae22bef47
child 20455 f6f9a0c2796b
--- a/jdk/src/share/classes/javax/swing/TransferHandler.java	Wed Sep 25 17:08:31 2013 +0400
+++ b/jdk/src/share/classes/javax/swing/TransferHandler.java	Wed Sep 25 17:35:22 2013 +0400
@@ -502,7 +502,7 @@
          * the action with the source drop actions, and then compare the result
          * against the original action. For example:
          * <pre>
-         * boolean copySupported = (COPY & getSourceDropActions()) == COPY;
+         * boolean copySupported = (COPY &amp; getSourceDropActions()) == COPY;
          * </pre>
          * <p>
          * This method is only for use with drag and drop transfers.