1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

Fixed compiler warnings

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-14 13:41:15 -03:00
parent 1e52e960f5
commit fddc6fbfbb
9 changed files with 218 additions and 32 deletions

View File

@@ -3,7 +3,6 @@ package com.l2jserver.model.world;
import com.l2jserver.model.world.capability.Actor;
import com.l2jserver.model.world.capability.Playable;
import com.l2jserver.model.world.capability.Teleportable;
import com.l2jserver.model.world.player.PlayerTeleportEvent;
import com.l2jserver.util.Coordinate;
/**
@@ -16,9 +15,9 @@ public abstract class Player extends AbstractActor implements Playable, Actor,
Teleportable {
@Override
public void teleport(Coordinate coordinate) {
final PlayerTeleportEvent event = new PlayerTeleportEvent(this,
coordinate);
this.setPosition(coordinate);
// final PlayerTeleportEvent event = new PlayerTeleportEvent(this,
// coordinate);
// this.setPosition(coordinate);
// event.dispatch();
}
}