Deprecation cleanup.

This commit is contained in:
Erik Broes
2012-01-30 21:51:53 +01:00
committed by EvilSeph
parent 3b634b14f6
commit 137880b727
15 changed files with 110 additions and 114 deletions

View File

@@ -5,18 +5,16 @@ import net.minecraft.server.WorldMapDecoration;
import org.bukkit.entity.Player;
import org.bukkit.map.MapCanvas;
import org.bukkit.map.MapCursorCollection;
import org.bukkit.map.MapRenderer;
import org.bukkit.map.MapView;
import org.bukkit.map.MapCursorCollection;
public class CraftMapRenderer extends MapRenderer {
private final CraftMapView mapView;
private final WorldMap worldMap;
public CraftMapRenderer(CraftMapView mapView, WorldMap worldMap) {
super(false);
this.mapView = mapView;
this.worldMap = worldMap;
}