Minus debugging output
This commit is contained in:
parent
219a5df9ff
commit
dc4cc8f3e1
1 changed files with 1 additions and 2 deletions
|
@ -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]));
|
||||||
|
|
Loading…
Add table
Reference in a new issue