jdk/src/java.base/share/native/libjli/args.c
changeset 39640 6f1a839ff43d
parent 36511 9d0388c6b336
child 40261 86a49ba76f52
equal deleted inserted replaced
39639:b2d7ac2be69e 39640:6f1a839ff43d
   128             idx = argsCount;
   128             idx = argsCount;
   129         }
   129         }
   130         expectingNoDashArg = JNI_FALSE;
   130         expectingNoDashArg = JNI_FALSE;
   131     }
   131     }
   132     // only update on java mode and not yet found main class
   132     // only update on java mode and not yet found main class
   133     if (firstAppArgIndex == -1 && idx != 0) {
   133     if (firstAppArgIndex == NOT_FOUND && idx != 0) {
   134         firstAppArgIndex = (int) idx;
   134         firstAppArgIndex = (int) idx;
   135     }
   135     }
   136 }
   136 }
   137 
   137 
   138 /*
   138 /*