You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2007/07/11 12:37:39 UTC

svn commit: r555234 - /harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Date.java

Author: tellison
Date: Wed Jul 11 03:37:32 2007
New Revision: 555234

URL: http://svn.apache.org/viewvc?view=rev&rev=555234
Log:
Remove unnecessary warning suppression.

Modified:
    harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Date.java

Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Date.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Date.java?view=diff&rev=555234&r1=555233&r2=555234
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Date.java (original)
+++ harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Date.java Wed Jul 11 03:37:32 2007
@@ -50,7 +50,6 @@
      * @param theDay
      *            the day in the month. Must be in the range 1 to 31.
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     public Date(int theYear, int theMonth, int theDay) {
         super(theYear, theMonth, theDay);
@@ -78,7 +77,6 @@
      * @throws IllegalArgumentException
      *             if this method is called
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public int getHours() {
@@ -92,7 +90,6 @@
      * @throws IllegalArgumentException
      *             if this method is called
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public int getMinutes() {
@@ -106,7 +103,6 @@
      * @throws IllegalArgumentException
      *             if this method is called
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public int getSeconds() {
@@ -121,7 +117,6 @@
      * @throws IllegalArgumentException
      *             if this method is called
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public void setHours(int theHours) {
@@ -136,7 +131,6 @@
      * @throws IllegalArgumentException
      *             if this method is called
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public void setMinutes(int theMinutes) {
@@ -151,7 +145,6 @@
      * @throws IllegalArgumentException
      *             if this method is called
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     @Override
     public void setSeconds(int theSeconds) {