TileCache: remove unused size field

This commit is contained in:
Hannes Janetzek
2014-08-24 09:36:39 +02:00
parent bb5cf608a6
commit f7a98017b1
2 changed files with 5 additions and 13 deletions

View File

@@ -38,7 +38,7 @@ public interface ITileCache {
* @param tile
* The accessed tile.
* @return
* The stored file for this tile.
* The stored file for this tile or null if tile is not stored.
*/
TileReader getTile(Tile tile);
@@ -52,8 +52,6 @@ public interface ITileCache {
Tile getTile();
InputStream getInputStream();
int getBytes();
}
public interface TileWriter {