From 9239dbfd4f7852ad68c862dca9d70e7b48f7f29c Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 11 Feb 2016 21:47:16 +0000 Subject: [PATCH] Removed unused QuestState radar methods. --- .../gameserver/model/quest/QuestState.java | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java b/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java index cd560e55e7..08b4603679 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java +++ b/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java @@ -655,24 +655,6 @@ public final class QuestState ((L2PcInstance) character).addNotifyQuestOfDeath(this); } - // TODO: More radar functions need to be added when the radar class is complete. - // BEGIN STUFF THAT WILL PROBABLY BE CHANGED - public void addRadar(int x, int y, int z) - { - _player.getRadar().addMarker(x, y, z); - } - - public void removeRadar(int x, int y, int z) - { - _player.getRadar().removeMarker(x, y, z); - } - - public void clearRadar() - { - _player.getRadar().removeAllMarkers(); - } - // END STUFF THAT WILL PROBABLY BE CHANGED - /** * @return {@code true} if quest is to be exited on clean up by QuestStateManager, {@code false} otherwise */