jdk/src/share/classes/java/lang/Throwable.java
changeset 24865 09b1d992ca72
parent 22581 e868cde95050
child 25979 42e5d9f8087e
--- a/jdk/src/share/classes/java/lang/Throwable.java	Tue Jun 10 14:17:32 2014 -0700
+++ b/jdk/src/share/classes/java/lang/Throwable.java	Tue Jun 10 16:18:54 2014 -0700
@@ -109,7 +109,7 @@
  * @author  Josh Bloch (Added exception chaining and programmatic access to
  *          stack trace in 1.4.)
  * @jls 11.2 Compile-Time Checking of Exceptions
- * @since JDK1.0
+ * @since 1.0
  */
 public class Throwable implements Serializable {
     /** use serialVersionUID from JDK 1.0.2 for interoperability */
@@ -385,7 +385,7 @@
      * {@code getMessage()}.
      *
      * @return  The localized description of this throwable.
-     * @since   JDK1.1
+     * @since   1.1
      */
     public String getLocalizedMessage() {
         return getMessage();
@@ -714,7 +714,7 @@
      * print writer.
      *
      * @param s {@code PrintWriter} to use for output
-     * @since   JDK1.1
+     * @since   1.1
      */
     public void printStackTrace(PrintWriter s) {
         printStackTrace(new WrappedPrintWriter(s));