8224763: Update man pages to show deprecation of -Xverify:none

Add the appropriate deprecation text

Reviewed-by: dholmes, lfoltan
This commit is contained in:
Harold Seigel 2019-05-29 08:21:33 -04:00
parent 02958a41ef
commit cf48689855
3 changed files with 10 additions and 2 deletions

View file

@ -1437,6 +1437,10 @@ ParseArguments(int *pargc, char ***pargv,
} else if (JLI_StrCmp(arg, "-verifyremote") == 0) {
AddOption("-Xverify:remote", NULL);
} else if (JLI_StrCmp(arg, "-noverify") == 0) {
/*
* Note that no 'deprecated' message is needed here because the VM
* issues 'deprecated' messages for -noverify and -Xverify:none.
*/
AddOption("-Xverify:none", NULL);
} else if (JLI_StrCCmp(arg, "-ss") == 0 ||
JLI_StrCCmp(arg, "-oss") == 0 ||