< prev index next >

src/utils/LogCompilation/src/main/java/com/sun/hotspot/tools/compiler/LogParser.java

Print this page

        

*** 721,733 **** * Java-level name. If the type ID cannot be mapped to a name, raise an * error. */ String type(String id) { String result = types.get(id); - if (result == null) { - reportInternalError(id); - } String remapped = type2printableMap.get(result); if (remapped != null) { return remapped; } return result; --- 721,730 ----
< prev index next >