PR libgcj/18234
* java/lang/Runtime.java (static): Call init().
(Runtime): Remove call to init().
(init): Make static.
From-SVN: r89902
+2004-10-30 Mark Wielaard <mark@klomp.org>
+
+ PR libgcj/18234
+ * java/lang/Runtime.java (static): Call init().
+ (Runtime): Remove call to init().
+ (init): Make static.
+
2004-10-28 David Daney <ddaney@avtrex.com>
* gnu/gcj/convert/Output_UnicodeLittleUnmarked.java: New file.
static
{
+ init();
insertSystemProperties(defaultProperties);
}
// work.
libpath = new String[0];
- init ();
}
/**
native boolean loadLibraryInternal(String libname);
/**
- * A helper for the constructor which does some internal native
+ * A helper for Runtime static initializer which does some internal native
* initialization.
*/
- private native void init ();
+ private static native void init ();
/**
* Map a system-independent "short name" to the full file name, and append