From f7a7f8145d15d1225945f376072837d1679f3279 Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Wed, 20 May 2009 04:22:20 +0000 Subject: [PATCH] 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 --- src/java/org/apache/commons/collections/map/LRUMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/collections/map/LRUMap.java b/src/java/org/apache/commons/collections/map/LRUMap.java index d0da4edd3..4c9ce4ab7 100644 --- a/src/java/org/apache/commons/collections/map/LRUMap.java +++ b/src/java/org/apache/commons/collections/map/LRUMap.java @@ -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