src/hotspot/share/classfile/classFileParser.cpp
changeset 54552 c09bdb9043f1
parent 53333 fd6de53a0d6e
child 54553 62771002a1cb
--- a/src/hotspot/share/classfile/classFileParser.cpp	Thu Dec 13 11:51:06 2018 -0800
+++ b/src/hotspot/share/classfile/classFileParser.cpp	Wed Dec 12 11:57:22 2018 -0800
@@ -6016,9 +6016,9 @@
   _minor_version = stream->get_u2_fast();
   _major_version = stream->get_u2_fast();
 
-  if (DumpSharedSpaces && _major_version < JAVA_1_5_VERSION) {
+  if (DumpSharedSpaces && _major_version < JAVA_6_VERSION) {
     ResourceMark rm;
-    warning("Pre JDK 1.5 class not supported by CDS: %u.%u %s",
+    warning("Pre JDK 6 class not supported by CDS: %u.%u %s",
             _major_version,  _minor_version, _class_name->as_C_string());
     Exceptions::fthrow(
       THREAD_AND_LOCATION,