From: <otm...@us...> - 2008-10-30 22:43:32
|
Revision: 5531 http://jython.svn.sourceforge.net/jython/?rev=5531&view=rev Author: otmarhumbel Date: 2008-10-30 22:43:27 +0000 (Thu, 30 Oct 2008) Log Message: ----------- fixed javac warnings due to source file encoding problems Modified Paths: -------------- trunk/installer/src/java/org/python/util/install/UnicodeSequences.java Modified: trunk/installer/src/java/org/python/util/install/UnicodeSequences.java =================================================================== --- trunk/installer/src/java/org/python/util/install/UnicodeSequences.java 2008-10-30 06:07:01 UTC (rev 5530) +++ trunk/installer/src/java/org/python/util/install/UnicodeSequences.java 2008-10-30 22:43:27 UTC (rev 5531) @@ -7,13 +7,13 @@ */ public interface UnicodeSequences { - public static final String A2 = "\u00C4"; // \xC4: A with two dots above - public static final String a2 = "\u00E4"; // \xE4: a with two dots above + public static final String A2 = "\u00C4"; // German A umlaut: A with two dots above + public static final String a2 = "\u00E4"; // German a umlaut: a with two dots above - public static final String O2 = "\u00D6"; // \xD6: O with two dots above - public static final String o2 = "\u00F6"; // \xF6: o with two dots above + public static final String O2 = "\u00D6"; // German O umlaut: O with two dots above + public static final String o2 = "\u00F6"; // German o umlaut: o with two dots above - public static final String U2 = "\u00DC"; // \xDC: U with two dots above - public static final String u2 = "\u00FC"; // \xFC: u with two dots above + public static final String U2 = "\u00DC"; // German U umlaut: U with two dots above + public static final String u2 = "\u00FC"; // German u umlaut: u with two dots above } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |