Remove the system out

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1171189 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
rfeng 2011-09-15 17:37:28 +00:00
parent 7a0fd392bd
commit c6c38f12af

View file

@ -139,11 +139,11 @@ public class Main {
File htmlFile = new File(dir, comp.getName() + comp.getFileNameSuffix() + ".html");
HTMLWrapper html = new HTMLWrapper(svg, comp.getName(), htmlFile);
String content = html.buildHTML();
html.buildHTML();
System.err.println("--------------HTML Output for " + comp.getName() + "--------------\n");
System.out.println(content);
System.err.println("--------------------------------------------------------------\n");
// System.err.println("--------------HTML Output for " + comp.getName() + "--------------\n");
// System.out.println(content);
// System.err.println("--------------------------------------------------------------\n");
}