X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=tim%2Fprune%2Ffunction%2Fcache%2FRowInfo.java;fp=tim%2Fprune%2Ffunction%2Fcache%2FRowInfo.java;h=809c572e48979255366e05ef7d2342329a38d1d7;hp=8c7ee23d00d39133b269268994f9c1174506d91f;hb=0a2480df5845e2d7190dfdec9b2653b1609e853d;hpb=2154b1969ac2995cca46546f217f53c066b0b749 diff --git a/tim/prune/function/cache/RowInfo.java b/tim/prune/function/cache/RowInfo.java index 8c7ee23..809c572 100644 --- a/tim/prune/function/cache/RowInfo.java +++ b/tim/prune/function/cache/RowInfo.java @@ -10,7 +10,6 @@ public class RowInfo private int _minZoom = -1, _maxZoom = -1; private int _numTiles = 0; private long _totalSize = 0L; - private boolean _unexpected = false; /** @@ -84,20 +83,6 @@ public class RowInfo return _totalSize; } - /** - * Mark that an unexpected file or directory was found - * TODO: Is this needed? - */ - public void foundUnexpected() { - _unexpected = true; - } - - /** - * @return true if any unexpected files or directories were found - */ - public boolean wasUnexpected() { - return _unexpected; - } /** * Add the given RowInfo object to this one @@ -117,6 +102,5 @@ public class RowInfo addZoom(inOther._maxZoom); if (inOther._zoom > 0) addZoom(inOther._zoom); - _unexpected = _unexpected || inOther._unexpected; } }