Author: ggregory
Date: Sun Jul 20 07:02:25 2014
New Revision: 1612045
URL: http://svn.apache.org/r1612045
Log:
Use the more modern, compact, and flexible Javadoc "{@code ...}" instead of the
HTML "<tt>...</tt>".
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongList.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollection.java
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortList.java
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanCollection.java
Sun Jul 20 07:02:25 2014
@@ -33,7 +33,7 @@ public interface BooleanCollection
* <p/>
* If a collection refuses to add the specified element for any reason
* other than that it already contains the element, it <i>must</i>
- * throw an exception (rather than simply returning <tt>false</tt>).
+ * throw an exception (rather than simply returning {@code false}).
* This preserves the invariant that a collection always contains the
* specified element after this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/BooleanList.java
Sun Jul 20 07:02:25 2014
@@ -32,7 +32,7 @@ public interface BooleanList extends Boo
* <p/>
* If a collection refuses to add the specified element for any reason
* other than that it already contains the element, it <i>must</i>
- * throw an exception (rather than simply returning <tt>false</tt>).
+ * throw an exception (rather than simply returning {@code false}).
* This preserves the invariant that a collection always contains the
* specified element after this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface ByteCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ByteList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface ByteList extends ByteCo
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface CharCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/CharList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface CharList extends CharCo
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface DoubleCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/DoubleList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface DoubleList extends Doub
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface FloatCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/FloatList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface FloatList extends Float
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface IntCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/IntList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface IntList extends IntColl
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface LongCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/LongList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface LongList extends LongCo
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollection.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollection.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortCollection.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface ShortCollection {
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*
Modified:
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortList.java
URL:
http://svn.apache.org/viewvc/commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortList.java?rev=1612045&r1=1612044&r2=1612045&view=diff
==============================================================================
---
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortList.java
(original)
+++
commons/proper/primitives/trunk/src/java/org/apache/commons/collections/primitives/ShortList.java
Sun Jul 20 07:02:25 2014
@@ -36,7 +36,7 @@ public interface ShortList extends Short
* If a collection refuses to add the specified
* element for any reason other than that it already contains
* the element, it <i>must</i> throw an exception (rather than
- * simply returning <tt>false</tt>). This preserves the invariant
+ * simply returning {@code false}). This preserves the invariant
* that a collection always contains the specified element after
* this call returns.
*