attention to detail :P

This commit is contained in:
Manindra Moharana
2013-08-19 00:54:30 +05:30
parent caf990c0ad
commit c341eff5a8
4 changed files with 23 additions and 11 deletions

View File

@@ -1251,14 +1251,14 @@ public class DebugEditor extends JavaEditor implements ActionListener {
}
private void handleRefactor() {
System.out.println("Caret at:");
System.out.println(ta.getLineText(ta.getCaretLine()));
log("Caret at:");
log(ta.getLineText(ta.getCaretLine()));
errorCheckerService.astGenerator.handleRefactor();
}
private void handleShowUsage() {
System.out.println("Caret at:");
System.out.println(ta.getLineText(ta.getCaretLine()));
log("Caret at:");
log(ta.getLineText(ta.getCaretLine()));
errorCheckerService.astGenerator.handleShowUsage();
}