Remove debug output (shame on me)

This commit is contained in:
johni0702
2015-08-17 22:27:22 +02:00
parent 6da06f1000
commit dcd4cbdfaa

View File

@@ -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