runelite-client: remove now unused configuration from mouse highlight plugin

This commit is contained in:
Adam
2017-11-10 13:59:55 -05:00
parent 4151ef83c8
commit f4922169f4

View File

@@ -27,8 +27,6 @@ package net.runelite.client.plugins.mousehighlight;
import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem;
import java.awt.Color;
@ConfigGroup(
keyName = "mousehighlight",
name = "Mouse Highlighting",
@@ -45,24 +43,4 @@ public interface MouseHighlightConfig
{
return true;
}
@ConfigItem(
keyName = "display_left",
name = "Display to the left of mouse?",
description = "Display to the left of the mouse or the right?"
)
default boolean display_left()
{
return true;
}
@ConfigItem(
keyName = "border",
name = "Border Color",
description = "Color of the mouse hover border"
)
default Color borderColor()
{
return Color.cyan;
}
}