Skip to content

Commit

Permalink
;-)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6978 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jul 18, 2010
1 parent 22dbbcf commit dec1419
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion source/net/yacy/kelondro/index/ConcurrentARC.java
Expand Up @@ -92,7 +92,6 @@ public final void clear() {
for (ARC<K, V> a: this.arc) a.clear();
}

@Override
public final int size() {
int s = 0;
for (ARC<K, V> a: this.arc) s += a.size();
Expand Down
1 change: 0 additions & 1 deletion source/net/yacy/kelondro/index/SimpleARC.java
Expand Up @@ -125,7 +125,6 @@ public final synchronized void clear() {
* get the size of the ARC. this returns the sum of main and ghost cache
* @return the complete number of entries in the ARC cache
*/
@Override
public final synchronized int size() {
return this.levelA.size() + this.levelB.size();
}
Expand Down

0 comments on commit dec1419

Please sign in to comment.