Added STDERR to pure java payload, cleaned up user's view.

git-svn-id: file:///home/svn/framework3/trunk@8308 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
natron
2010-01-28 22:53:36 +00:00
parent 70c0cb7530
commit 69ad365b46
14 changed files with 83 additions and 24 deletions
@@ -22,7 +22,7 @@ public class CreateJarFile {
if (tobeJared[i] == null || !tobeJared[i].exists()
|| tobeJared[i].isDirectory())
continue; // Just in case...
System.out.println("Adding " + tobeJared[i].getName());
//System.out.println("Adding " + tobeJared[i].getName());
// Add archive entry
JarEntry jarAdd = new JarEntry(tobeJared[i].getName());
@@ -42,7 +42,7 @@ public class CreateJarFile {
out.close();
stream.close();
System.out.println("Adding completed OK");
//System.out.println("Adding completed OK");
} catch (Exception ex) {
ex.printStackTrace();
System.out.println("Error: " + ex.getMessage());