--- old/src/hotspot/share/gc/g1/g1HeapVerifier.cpp 2017-11-29 12:36:32.912789673 +0100 +++ new/src/hotspot/share/gc/g1/g1HeapVerifier.cpp 2017-11-29 12:36:32.672780137 +0100 @@ -388,12 +388,12 @@ } else if (strcmp(type, "full") == 0) { enable_verification_type(G1VerifyFull); } else { - log_warning(gc, verify)("VerifyGCType: '%s' is unknown. Available are: young, mixed, remark, cleanup and full ", type); + log_warning(gc, verify)("VerifyGCType: '%s' is unknown. Available types are: young, mixed, remark, cleanup and full", type); } } void G1HeapVerifier::enable_verification_type(G1VerifyType type) { - // First enable will clear _types. + // First enable will clear _enabled_verification_types. if (_enabled_verification_types == G1VerifyAll) { _enabled_verification_types = type; } else {