diff options
Diffstat (limited to 'libjava/java/lang/Runtime.java')
-rw-r--r-- | libjava/java/lang/Runtime.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/lang/Runtime.java b/libjava/java/lang/Runtime.java index a1babfc..aaeb93e 100644 --- a/libjava/java/lang/Runtime.java +++ b/libjava/java/lang/Runtime.java @@ -111,6 +111,7 @@ public class Runtime static { + init(); insertSystemProperties(defaultProperties); } @@ -151,7 +152,6 @@ public class Runtime // work. libpath = new String[0]; - init (); } /** @@ -709,10 +709,10 @@ public class Runtime 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 |