playerindicators: Use interface instead of type
This commit is contained in:
@@ -28,6 +28,7 @@ import com.google.inject.Provides;
|
|||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import javax.inject.Singleton;
|
import javax.inject.Singleton;
|
||||||
import lombok.AccessLevel;
|
import lombok.AccessLevel;
|
||||||
@@ -172,7 +173,7 @@ public class PlayerIndicatorsPlugin extends Plugin
|
|||||||
overlayManager.remove(playerIndicatorsMinimapOverlay);
|
overlayManager.remove(playerIndicatorsMinimapOverlay);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ArrayList<String> callers = new ArrayList<>();
|
private List<String> callers = new ArrayList<>();
|
||||||
|
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void onConfigChanged(ConfigChanged event)
|
public void onConfigChanged(ConfigChanged event)
|
||||||
|
|||||||
Reference in New Issue
Block a user