hotspot/src/share/vm/classfile/sharedPathsMiscInfo.hpp
changeset 46365 d79745f72ae6
parent 42876 ff8ff9dcccec
child 46701 f559541c0daa
--- a/hotspot/src/share/vm/classfile/sharedPathsMiscInfo.hpp	Wed Apr 05 01:11:25 2017 +0000
+++ b/hotspot/src/share/vm/classfile/sharedPathsMiscInfo.hpp	Wed Apr 05 18:15:09 2017 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -128,15 +128,13 @@
 
   enum {
     BOOT      = 1,
-    NON_EXIST = 2,
-    REQUIRED  = 3
+    NON_EXIST = 2
   };
 
   virtual const char* type_name(int type) {
     switch (type) {
     case BOOT:      return "BOOT";
     case NON_EXIST: return "NON_EXIST";
-    case REQUIRED:  return "REQUIRED";
     default:        ShouldNotReachHere(); return "?";
     }
   }