Skip to content

Commit 5e8bb2a

Browse files
committed
Compiler debug comments removed
1 parent f2adc17 commit 5e8bb2a

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed
-12 Bytes
Binary file not shown.
-12 Bytes
Binary file not shown.

sources/net.sf.j2s.core/src/net/sf/j2s/core/compiler/Java2ScriptCompiler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ private static void addHTML(ArrayList<String> appList, String siteFolder, String
369369

370370
@Override
371371
public boolean accept(File pathname) {
372+
//System.out.println("accept " + pathname + " " +pathname.isDirectory());
372373
return pathname.isDirectory() || !pathname.getName().endsWith(".java");
373374
}
374375

@@ -382,7 +383,7 @@ private static void copyNonclassFiles(File dir, File target) {
382383
if (dir.equals(target))
383384
return;
384385
File[] files = dir.listFiles(filter);
385-
System.out.println("copy nonclassFiles " + dir + " to " + target + " [" + (files != null ? files.length : "") + "]");
386+
System.err.println("copy nonclassFiles " + dir + " to " + target + " [" + (files != null ? files.length : "") + "]");
386387
File f = null;
387388
if (files != null)
388389
try {

0 commit comments

Comments
 (0)