missed to comment out debug println()

This commit is contained in:
fjenett
2012-04-08 07:45:17 +00:00
parent fd732b0938
commit 7c5ea232f4
+1 -1
View File
@@ -1719,7 +1719,7 @@ public abstract class Editor extends JFrame implements RunnerListener {
} else {
// Check the first characters to see if it's already a comment.
String begin = textarea.getText(pos, prefixLen);
System.out.println("begin is '" + begin + "'");
//System.out.println("begin is '" + begin + "'");
commented = begin.equals(prefix);
}
}