Author: bayard
Date: Wed May 20 04:22:12 2009
New Revision: 776538
URL: http://svn.apache.org/viewvc?rev=776538&view=rev
Log:
Removing the incorrect -1 means no limit phrase from the constructor javadoc.
COLLECTIONS-316
Modified:
commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/LRUMap.java
Modified:
commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/LRUMap.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/LRUMap.java?rev=776538&r1=776537&r2=776538&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/LRUMap.java
(original)
+++
commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/LRUMap.java
Wed May 20 04:22:12 2009
@@ -102,7 +102,7 @@
* Constructs a new, empty map with the specified initial capacity and
* load factor.
*
- * @param maxSize the maximum size of the map, -1 for no limit,
+ * @param maxSize the maximum size of the map
* @param loadFactor the load factor
* @throws IllegalArgumentException if the maximum size is less than one
* @throws IllegalArgumentException if the load factor is less than zero
@@ -115,7 +115,7 @@
* Constructs a new, empty map with the specified initial capacity and
* load factor.
*
- * @param maxSize the maximum size of the map, -1 for no limit,
+ * @param maxSize the maximum size of the ma
* @param loadFactor the load factor
* @param scanUntilRemovable scan until a removeable entry is found,
default false
* @throws IllegalArgumentException if the maximum size is less than one