VMS Help JAVA, Qualifiers, /VERIFY *Conan The Librarian (sorry for the slow response - running on an old VAX) |
/VERIFY /NOVERIFY -verify -noverify Performs byte-code verification on the class file. Be aware however, that JAVA/VERIFY does not perform a full verification in all situations. Any code path that is not actually executed by the interpreter is not verified. Therefore, JAVA/VERIFY cannot be relied on to certify class files unless all code paths in the class file are actually run. The /NOVERIFY qualifier (-noverify option) turns verification off.
|