rwaldhoff    2002/12/09 14:13:36

  Modified:    beanutils/src/test/org/apache/commons/beanutils
                        TestResultSet.java
  Log:
  mark overridden deprecated methods as deprecated to make the eclipse warnings go away
  
  Revision  Changes    Path
  1.2       +8 -5      
jakarta-commons/beanutils/src/test/org/apache/commons/beanutils/TestResultSet.java
  
  Index: TestResultSet.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/beanutils/src/test/org/apache/commons/beanutils/TestResultSet.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestResultSet.java        12 Jul 2002 22:38:21 -0000      1.1
  +++ TestResultSet.java        9 Dec 2002 22:13:36 -0000       1.2
  @@ -247,7 +247,7 @@
           throw new UnsupportedOperationException();
       }
   
  -
  +    /** @deprecated */
       public BigDecimal getBigDecimal(int columnIndex, int scale)
           throws SQLException {
           throw new UnsupportedOperationException();
  @@ -259,6 +259,7 @@
       }
   
   
  +    /** @deprecated */
       public BigDecimal getBigDecimal(String columnName, int scale)
           throws SQLException {
           throw new UnsupportedOperationException();
  @@ -518,11 +519,13 @@
       }
   
   
  +    /** @deprecated */
       public InputStream getUnicodeStream(int columnIndex) throws SQLException {
           throw new UnsupportedOperationException();
       }
   
   
  +    /** @deprecated */
       public InputStream getUnicodeStream(String columnName) throws SQLException {
           throw new UnsupportedOperationException();
       }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to