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:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user