re PR libgcj/4213 (SimpleDateFormat constructor SEGV's.)

Fix for PR libgcj/4213:
	* Makefile.am (ordinary_java_source_files): Added new file.
	* gnu/gcj/text/LocaleData.java: New file.

From-SVN: r45381
This commit is contained in:
Tom Tromey
2001-09-04 17:18:20 +00:00
committed by Tom Tromey
parent 9aa5ba9701
commit 9d6466593e
4 changed files with 34 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
// Generic locale data for java.text.
/* Copyright (C) 2001 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.text;
import java.util.ListResourceBundle;
public class LocaleData extends ListResourceBundle
{
private static final Object[][] contents =
{
};
protected Object[][] getContents ()
{
return contents;
}
}