chatboxinput: Plugin should be able to use this

This commit is contained in:
Owain van Brakel
2020-04-19 15:21:52 +02:00
parent 1debe8a99b
commit 0fad6edb6c
2 changed files with 4 additions and 4 deletions

View File

@@ -27,13 +27,13 @@ package net.runelite.client.game.chatbox;
/** /**
* A modal input that lives in the chatbox panel. * A modal input that lives in the chatbox panel.
*/ */
abstract class ChatboxInput public abstract class ChatboxInput
{ {
void open() protected void open()
{ {
} }
void close() protected void close()
{ {
} }
} }

View File

@@ -573,7 +573,7 @@ public class ChatboxTextInput extends ChatboxInput implements KeyListener, Mouse
} }
@Override @Override
void close() protected void close()
{ {
if (this.onClose != null) if (this.onClose != null)
{ {