This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: LocalInformation
- To: java-patches at gcc dot gnu dot org
- Subject: Patch: LocalInformation
- From: Anthony Green <green at redhat dot com>
- Date: Mon, 17 Sep 2001 00:08:20 -0700
- Reply-to: green at cygnus dot com
I'm committing this change, which is required to run tomcat and was
discussed here:
http://gcc.gnu.org/ml/java-patches/2001-q3/msg00381.html
2001-09-16 Anthony Green <green@redhat.com>
* gnu/java/locale/LocaleInformation.java: Extend
LocaleInformation_en_US, not LocaleInformation_en.
Index: gnu/java/locale/LocaleInformation.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/locale/LocaleInformation.java,v
retrieving revision 1.1
diff -c -u -r1.1 LocaleInformation.java
--- LocaleInformation.java 2001/05/10 18:13:17 1.1
+++ LocaleInformation.java 2001/09/17 07:05:48
@@ -31,7 +31,7 @@
* This is the resource bundle for the default locale, which right now is
* hardcoded to US English.
*/
-public class LocaleInformation extends LocaleInformation_en
+public class LocaleInformation extends LocaleInformation_en_US
{
}
AG