You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by nd...@apache.org on 2009/10/10 23:18:37 UTC

svn commit: r823941 - /harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/java/awt/List.java

Author: ndbeyer
Date: Sat Oct 10 21:18:36 2009
New Revision: 823941

URL: http://svn.apache.org/viewvc?rev=823941&view=rev
Log:
remove duplicate deprecation notices, remove unnecessary supressions

Modified:
    harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/java/awt/List.java

Modified: harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/java/awt/List.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/java/awt/List.java?rev=823941&r1=823940&r2=823941&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/java/awt/List.java (original)
+++ harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/java/awt/List.java Sat Oct 10 21:18:36 2009
@@ -790,9 +790,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public void clear() {
         toolkit.lockAWT();
@@ -926,10 +923,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public Dimension minimumSize() {
@@ -944,9 +937,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public Dimension minimumSize(int rows) {
         toolkit.lockAWT();
@@ -957,9 +947,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public Dimension preferredSize(int rows) {
         toolkit.lockAWT();
@@ -970,10 +957,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public Dimension preferredSize() {
@@ -999,9 +982,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public void addItem(String item) {
         toolkit.lockAWT();
@@ -1013,9 +993,6 @@
         return;
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public void addItem(String item, int index) {
         toolkit.lockAWT();
@@ -1027,9 +1004,6 @@
         return;
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public boolean allowsMultipleSelections() {
         toolkit.lockAWT();
@@ -1040,9 +1014,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public int countItems() {
         toolkit.lockAWT();
@@ -1053,9 +1024,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public void delItem(int position) {
         toolkit.lockAWT();
@@ -1066,9 +1034,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public void delItems(int start, int end) {
         toolkit.lockAWT();
@@ -1217,9 +1182,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public boolean isSelected(int pos) {
         toolkit.lockAWT();
@@ -1305,9 +1267,6 @@
         }
     }
 
-    /**
-     * @deprecated
-     */
     @Deprecated
     public void setMultipleSelections(boolean mm) {
         toolkit.lockAWT();