# HG changeset patch # User ecaspole # Date 1516311463 18000 # Node ID b9a29dfaaeb26256e383a2ae04f7d520b6684e4a # Parent d2920683b2ea51b196c62a601d3dec7a6e90ac2a 8195064: LogCompilation: Chicken and egg startup problem with types Summary: Removed extra null check that was causing the problem Reviewed-by: thartmann, kvn diff -r d2920683b2ea -r b9a29dfaaeb2 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;