8195064: LogCompilation: Chicken and egg startup problem with types
authorecaspole
Thu, 18 Jan 2018 16:37:43 -0500
changeset 48793 b9a29dfaaeb2
parent 48792 d2920683b2ea
child 48794 ea0d0781c63c
8195064: LogCompilation: Chicken and egg startup problem with types Summary: Removed extra null check that was causing the problem Reviewed-by: thartmann, kvn
src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java
--- a/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java	Thu Jan 18 09:01:00 2018 -0800
+++ b/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java	Thu Jan 18 16:37:43 2018 -0500
@@ -723,9 +723,6 @@
      */
     String type(String id) {
         String result = types.get(id);
-        if (result == null) {
-            reportInternalError(id);
-        }
         String remapped = type2printableMap.get(result);
         if (remapped != null) {
             return remapped;