Fixed rendering zoomedout tiles.

This commit is contained in:
FrozenCow 2011-02-09 13:25:06 +01:00
parent b2f6ae5132
commit d566fccb1e

View File

@ -29,7 +29,6 @@ public class ZoomedTileRenderer {
try {
image = ImageIO.read(new File(new File(outputPath), originalTile.getName() + ".png"));
} catch (IOException e) {
return;
}
if (image == null) {
@ -42,7 +41,6 @@ public class ZoomedTileRenderer {
try {
zIm = ImageIO.read(zoomFile);
} catch (IOException e) {
return;
}
if (zIm == null) {