Minus debugging output

This commit is contained in:
hns 2009-09-21 12:49:14 +00:00
parent 219a5df9ff
commit dc4cc8f3e1

View file

@ -441,7 +441,6 @@ public class MarkdownProcessor {
break; break;
} }
lastChar = chars[k]; lastChar = chars[k];
System.err.println(k + ": " + chars[k]);
if (escape) { if (escape) {
escape = false; escape = false;
@ -1189,7 +1188,7 @@ public class MarkdownProcessor {
public static void main(String[] args) throws IOException { public static void main(String[] args) throws IOException {
if (args.length != 1) { if (args.length != 1) {
System.err.println("Usage: java org.helma.util.MarkdownProcessor FILE"); System.out.println("Usage: java org.helma.util.MarkdownProcessor FILE");
return; return;
} }
MarkdownProcessor processor = new MarkdownProcessor(new File(args[0])); MarkdownProcessor processor = new MarkdownProcessor(new File(args[0]));