diff --git a/jOOQ-console/src/main/java/org/jooq/debug/console/SqlTextArea.java b/jOOQ-console/src/main/java/org/jooq/debug/console/SqlTextArea.java index 0906303882..ec73e0d3b4 100644 --- a/jOOQ-console/src/main/java/org/jooq/debug/console/SqlTextArea.java +++ b/jOOQ-console/src/main/java/org/jooq/debug/console/SqlTextArea.java @@ -93,8 +93,7 @@ public class SqlTextArea extends RSyntaxTextArea { switch(e.getKeyCode()) { case KeyEvent.VK_P: if(isControlDown && isShiftDown) { - //int position = RSyntaxUtilities.getMatchingBracketPosition(SqlTextArea.this, null).y; - int position = RSyntaxUtilities.getMatchingBracketPosition(SqlTextArea.this); + int position = RSyntaxUtilities.getMatchingBracketPosition(SqlTextArea.this, null).y; if(position >= 0) { setCaretPosition(position + 1); }