Disabling debug messages...

This commit is contained in:
Manindra Moharana
2014-07-15 11:25:21 +05:30
parent 98ad9ffd04
commit f8ed842e5a
3 changed files with 34 additions and 34 deletions

View File

@@ -106,7 +106,7 @@ public class CompletionPanel {
textarea.requestFocusInWindow();
popupMenu.show(textarea, location.x, textarea.getBaseline(0, 0)
+ location.y);
log("Suggestion shown: " + System.currentTimeMillis());
//log("Suggestion shown: " + System.currentTimeMillis());
}
public boolean isVisible() {
@@ -114,7 +114,7 @@ public class CompletionPanel {
}
public void setVisible(boolean v){
log("Pred popup visible.");
//log("Pred popup visible.");
popupMenu.setVisible(v);
}
@@ -243,7 +243,7 @@ public class CompletionPanel {
textarea.setCaretPosition(insertionPosition
+ selectedSuggestion.length());
}
log("Suggestion inserted: " + System.currentTimeMillis());
//log("Suggestion inserted: " + System.currentTimeMillis());
return true;
} catch (BadLocationException e1) {
e1.printStackTrace();