println instead of \n, for compatibility with DOS

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@546 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 4ffe97870b
commit d0e3a0814f
  1. 7
      jode/jode/decompiler/ImportHandler.java

@ -137,9 +137,10 @@ public class JodeEnvironment {
throws java.io.IOException
{
writer.println("/* "+ className
+ " - Decompiled by JoDe (Jochen's Decompiler)\n"
+ " * Send comments or bug reports to "
+ Decompiler.email + "\n */");
+ " - Decompiled by JoDe (Jochen's Decompiler)");
writer.println(" * Send comments or bug reports to "
+ Decompiler.email);
writer.println(" */");
if (pkg.length() != 0)
writer.println("package "+pkg+";");

Loading…
Cancel
Save