src/share/classes/java/sql/Timestamp.java

Print this page

        

@@ -269,10 +269,11 @@
      * where <code>ffffffffff</code> indicates nanoseconds.
      * <P>
      * @return a <code>String</code> object in
      *           <code>yyyy-mm-dd hh:mm:ss.fffffffff</code> format
      */
+    @SuppressWarnings("deprecation")
     public String toString () {
 
         int year = super.getYear() + 1900;
         int month = super.getMonth() + 1;
         int day = super.getDate();