Removing the incorrect -1 means no limit phrase from the constructor javadoc. COLLECTIONS-316
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@776538 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b8a191f6b7
commit
f7a7f8145d
|
@ -102,7 +102,7 @@ public class LRUMap
|
|||
* 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 @@ public class LRUMap
|
|||
* 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
|
||||
|
|
Loading…
Reference in New Issue