src/java.base/share/classes/java/lang/System.java
changeset 58739 2b0c5800fb1c
parent 58574 dcc760954243
equal deleted inserted replaced
58738:ef2b75750838 58739:2b0c5800fb1c
    92  * @since   1.0
    92  * @since   1.0
    93  */
    93  */
    94 public final class System {
    94 public final class System {
    95     /* Register the natives via the static initializer.
    95     /* Register the natives via the static initializer.
    96      *
    96      *
    97      * VM will invoke the initializeSystemClass method to complete
    97      * The VM will invoke the initPhase1 method to complete the initialization
    98      * the initialization for this class separated from clinit.
    98      * of this class separate from <clinit>.
    99      * Note that to use properties set by the VM, see the constraints
       
   100      * described in the initializeSystemClass method.
       
   101      */
    99      */
   102     private static native void registerNatives();
   100     private static native void registerNatives();
   103     static {
   101     static {
   104         registerNatives();
   102         registerNatives();
   105     }
   103     }