You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/09/15 07:54:23 UTC

svn commit: r815026 - /commons/proper/collections/trunk/src/java/org/apache/commons/collections/BoundedMap.java

Author: bayard
Date: Tue Sep 15 05:54:23 2009
New Revision: 815026

URL: http://svn.apache.org/viewvc?rev=815026&view=rev
Log:
Merging from -r468106:814127 of collections_jdk5_branch - namely where this code was generified; mostly in r738956.

Also see the following revisions:

    ------------------------------------------------------------------------
    r740150 | mbenson | 2009-02-02 15:24:00 -0800 (Mon, 02 Feb 2009) | 1 line
    
    make all [collections] maps implement IterableMap
    ------------------------------------------------------------------------

Modified:
    commons/proper/collections/trunk/src/java/org/apache/commons/collections/BoundedMap.java

Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/BoundedMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/BoundedMap.java?rev=815026&r1=815025&r2=815026&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/java/org/apache/commons/collections/BoundedMap.java (original)
+++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/BoundedMap.java Tue Sep 15 05:54:23 2009
@@ -16,8 +16,6 @@
  */
 package org.apache.commons.collections;
 
-import java.util.Map;
-
 /**
  * Defines a map that is bounded in size.
  * <p>
@@ -30,7 +28,7 @@
  *
  * @author Stephen Colebourne
  */
-public interface BoundedMap extends Map {
+public interface BoundedMap<K, V> extends IterableMap<K, V> {
 
     /**
      * Returns true if this map is full and no new elements can be added.