From dec1419bc37be4770e718b09bd89807668e18500 Mon Sep 17 00:00:00 2001 From: orbiter Date: Sun, 18 Jul 2010 20:18:32 +0000 Subject: [PATCH] ;-) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6978 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/net/yacy/kelondro/index/ConcurrentARC.java | 1 - source/net/yacy/kelondro/index/SimpleARC.java | 1 - 2 files changed, 2 deletions(-) diff --git a/source/net/yacy/kelondro/index/ConcurrentARC.java b/source/net/yacy/kelondro/index/ConcurrentARC.java index 7c939662f..e188531e6 100644 --- a/source/net/yacy/kelondro/index/ConcurrentARC.java +++ b/source/net/yacy/kelondro/index/ConcurrentARC.java @@ -92,7 +92,6 @@ public final class ConcurrentARC implements ARC { for (ARC a: this.arc) a.clear(); } - @Override public final int size() { int s = 0; for (ARC a: this.arc) s += a.size(); diff --git a/source/net/yacy/kelondro/index/SimpleARC.java b/source/net/yacy/kelondro/index/SimpleARC.java index 671e340e5..acbbc21a0 100644 --- a/source/net/yacy/kelondro/index/SimpleARC.java +++ b/source/net/yacy/kelondro/index/SimpleARC.java @@ -125,7 +125,6 @@ public final class SimpleARC implements ARC { * 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(); }