8195064: LogCompilation: Chicken and egg startup problem with types
Summary: Removed extra null check that was causing the problem
Reviewed-by: thartmann, kvn
--- 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;