You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by sr...@apache.org on 2010/02/16 16:55:08 UTC

svn commit: r910566 - /lucene/mahout/trunk/core/src/main/java/org/apache/mahout/cf/taste/impl/common/FastByIDMap.java

Author: srowen
Date: Tue Feb 16 15:55:07 2010
New Revision: 910566

URL: http://svn.apache.org/viewvc?rev=910566&view=rev
Log:
Fix inadvertent semantic change associated to the rollback of static qualifier change

Modified:
    lucene/mahout/trunk/core/src/main/java/org/apache/mahout/cf/taste/impl/common/FastByIDMap.java

Modified: lucene/mahout/trunk/core/src/main/java/org/apache/mahout/cf/taste/impl/common/FastByIDMap.java
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/core/src/main/java/org/apache/mahout/cf/taste/impl/common/FastByIDMap.java?rev=910566&r1=910565&r2=910566&view=diff
==============================================================================
--- lucene/mahout/trunk/core/src/main/java/org/apache/mahout/cf/taste/impl/common/FastByIDMap.java (original)
+++ lucene/mahout/trunk/core/src/main/java/org/apache/mahout/cf/taste/impl/common/FastByIDMap.java Tue Feb 16 15:55:07 2010
@@ -394,12 +394,12 @@
     
     @Override
     public int size() {
-      return this.size();
+      return FastByIDMap.this.size();
     }
     
     @Override
     public boolean isEmpty() {
-      return this.isEmpty();
+      return FastByIDMap.this.isEmpty();
     }
     
     @Override
@@ -439,7 +439,7 @@
     
     @Override
     public void clear() {
-      this.clear();
+      FastByIDMap.this.clear();
     }
     
     private final class MapEntry implements Map.Entry<Long,V> {