jdk/src/share/classes/java/util/BitSet.java
changeset 24865 09b1d992ca72
parent 24257 f524e23d7f7b
--- a/jdk/src/share/classes/java/util/BitSet.java	Tue Jun 10 14:17:32 2014 -0700
+++ b/jdk/src/share/classes/java/util/BitSet.java	Tue Jun 10 16:18:54 2014 -0700
@@ -60,7 +60,7 @@
  * @author  Arthur van Hoff
  * @author  Michael McCloskey
  * @author  Martin Buchholz
- * @since   JDK1.0
+ * @since   1.0
  */
 public class BitSet implements Cloneable, java.io.Serializable {
     /*
@@ -437,7 +437,7 @@
      *
      * @param  bitIndex a bit index
      * @throws IndexOutOfBoundsException if the specified index is negative
-     * @since  JDK1.0
+     * @since  1.0
      */
     public void set(int bitIndex) {
         if (bitIndex < 0)
@@ -533,7 +533,7 @@
      *
      * @param  bitIndex the index of the bit to be cleared
      * @throws IndexOutOfBoundsException if the specified index is negative
-     * @since  JDK1.0
+     * @since  1.0
      */
     public void clear(int bitIndex) {
         if (bitIndex < 0)