]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/function/cache/RowInfo.java
Version 18, July 2015
[GpsPrune.git] / tim / prune / function / cache / RowInfo.java
index 8c7ee23d00d39133b269268994f9c1174506d91f..809c572e48979255366e05ef7d2342329a38d1d7 100644 (file)
@@ -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;
        }
 }