aboutsummaryrefslogtreecommitdiff
path: root/libjava/scripts
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2004-01-08 05:20:31 +0000
committerTom Tromey <tromey@gcc.gnu.org>2004-01-08 05:20:31 +0000
commitce972ee8f60c89b666dcebe2ef5ea5df0514c095 (patch)
treee485dc9774147a3e61c0a6c26271291c48549693 /libjava/scripts
parentfbea267fef82191f9f195cfc99c28f656c6ab712 (diff)
downloadgcc-ce972ee8f60c89b666dcebe2ef5ea5df0514c095.zip
gcc-ce972ee8f60c89b666dcebe2ef5ea5df0514c095.tar.gz
gcc-ce972ee8f60c89b666dcebe2ef5ea5df0514c095.tar.bz2
MakeDefaultMimeTypes.java: Use \n, not backslash-newline.
* scripts/MakeDefaultMimeTypes.java: Use \n, not backslash-newline. From-SVN: r75532
Diffstat (limited to 'libjava/scripts')
-rw-r--r--libjava/scripts/MakeDefaultMimeTypes.java22
1 files changed, 3 insertions, 19 deletions
diff --git a/libjava/scripts/MakeDefaultMimeTypes.java b/libjava/scripts/MakeDefaultMimeTypes.java
index 49b67d6..2b7aa0d 100644
--- a/libjava/scripts/MakeDefaultMimeTypes.java
+++ b/libjava/scripts/MakeDefaultMimeTypes.java
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation
+/* Copyright (C) 2000, 2003 Free Software Foundation
This file is part of libgcj.
@@ -36,21 +36,7 @@ public class MakeDefaultMimeTypes
fatal ("error reading " + args[0]);
}
- System.out.println ("// Do not edit this file! Create a new version with MakeDefaultMimeTypes.\
-\
-/* Copyright (C) 2000 Free Software Foundation\
-\
- This file is part of libgcj.\
-\
-This software is copyrighted work licensed under the terms of the\
-Libgcj License. Please consult the file \"LIBGCJ_LICENSE\" for\
-details. */\
-\
-package gnu.gcj.io; \
-\
-public class DefaultMimeTypes\
-{\
- public static final String[] types = {");
+ System.out.println ("// Do not edit this file! Create a new version with MakeDefaultMimeTypes.\n\n/* Copyright (C) 2000 Free Software Foundation\n\n This file is part of libgcj.\n\nThis software is copyrighted work licensed under the terms of the\nLibgcj License. Please consult the file \"LIBGCJ_LICENSE\" for\ndetails. */\n\npackage gnu.gcj.io; \n\npublic class DefaultMimeTypes\n{\n public static final String[] types = {");
Enumeration keys = mime_table.keys();
Enumeration values = mime_table.elements();
@@ -85,9 +71,7 @@ public class DefaultMimeTypes\
}
// Append last element with closing bracket
- result.append(" };\
-}\
-");
+ result.append(" };\n}\n");
System.out.println(result);
}
}