Remove debug output (shame on me)
This commit is contained in:
@@ -510,7 +510,6 @@ public class GuiTextArea extends Gui implements GuiElement, GuiOutsideClickableE
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
if (GuiScreen.isCtrlKeyDown()) {
|
||||
switch (keyCode) {
|
||||
case Keyboard.KEY_A: // Select all
|
||||
@@ -624,14 +623,6 @@ public class GuiTextArea extends Gui implements GuiElement, GuiOutsideClickableE
|
||||
selectionX = cursorX;
|
||||
selectionY = cursorY;
|
||||
}
|
||||
} finally {
|
||||
System.out.println(cursorX + "/" + cursorY);
|
||||
System.out.println(selectionX + "/" + selectionY);
|
||||
System.out.println("Lines (" + text.length + "): ");
|
||||
for (String line : text) {
|
||||
System.out.println(line);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user