fix html backend

This commit is contained in:
Hannes Janetzek 2014-01-17 00:01:11 +01:00
parent b48f3fb1a2
commit d021ac4a6f

View File

@ -17,11 +17,12 @@ package org.oscim.tiling.source.common;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.oscim.tiling.MapTile; import org.oscim.tiling.MapTile;
import org.oscim.tiling.source.ITileCache;
import org.oscim.tiling.source.ITileDataSink; import org.oscim.tiling.source.ITileDataSink;
import org.oscim.tiling.source.ITileDataSource; import org.oscim.tiling.source.ITileDataSource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** /**
* *
@ -33,7 +34,7 @@ public abstract class PbfTileDataSource implements ITileDataSource {
protected LwHttp mConn; protected LwHttp mConn;
protected final PbfDecoder mTileDecoder; protected final PbfDecoder mTileDecoder;
public PbfTileDataSource(PbfDecoder tileDecoder) { public PbfTileDataSource(PbfDecoder tileDecoder, ITileCache cache) {
mTileDecoder = tileDecoder; mTileDecoder = tileDecoder;
} }