Author: jochen
Date: Tue Mar  1 22:27:53 2011
New Revision: 1076036

URL: http://svn.apache.org/viewvc?rev=1076036&view=rev
Log:
PR: COLLECTIONS-335
Setting TreeBidiMap.entrySet now, as is the case in the trunk.

Modified:
    
commons/proper/collections/branches/COLLECTIONS_3_2_BRANCH/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java

Modified: 
commons/proper/collections/branches/COLLECTIONS_3_2_BRANCH/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/branches/COLLECTIONS_3_2_BRANCH/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java?rev=1076036&r1=1076035&r2=1076036&view=diff
==============================================================================
--- 
commons/proper/collections/branches/COLLECTIONS_3_2_BRANCH/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java
 (original)
+++ 
commons/proper/collections/branches/COLLECTIONS_3_2_BRANCH/src/java/org/apache/commons/collections/bidimap/TreeBidiMap.java
 Tue Mar  1 22:27:53 2011
@@ -392,7 +392,8 @@ public class TreeBidiMap implements Orde
      */
     public Set entrySet() {
         if (entrySet == null) {
-            return new EntryView(this, KEY, MAPENTRY);
+            entrySet = new EntryView(this, KEY, MAPENTRY);
+            return entrySet;
         }
         return entrySet;
     }


Reply via email to