From dcb4e73a38a3f85dc1c0b60c73a578fedc83d631 Mon Sep 17 00:00:00 2001 From: Eric Caspole Date: Thu, 18 Jan 2018 16:37:43 -0500 Subject: [PATCH] 8195064: LogCompilation: Chicken and egg startup problem with types Removed extra null check that was causing the problem Reviewed-by: thartmann, kvn --- .../main/java/com/sun/hotspot/tools/compiler/LogParser.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java b/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java index 561c932fefe..d3aed82ae2d 100644 --- a/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java +++ b/src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java @@ -723,9 +723,6 @@ public class LogParser extends DefaultHandler implements ErrorHandler { */ String type(String id) { String result = types.get(id); - if (result == null) { - reportInternalError(id); - } String remapped = type2printableMap.get(result); if (remapped != null) { return remapped;