equal
deleted
inserted
replaced
257 if (!options.compat) // BUG 6622232 javap gets whitespace confused |
257 if (!options.compat) // BUG 6622232 javap gets whitespace confused |
258 println(); |
258 println(); |
259 return null; |
259 return null; |
260 } |
260 } |
261 |
261 |
262 String getJavaException(Exceptions_attribute attr, int index) { |
262 private String getJavaException(Exceptions_attribute attr, int index) { |
263 try { |
263 try { |
264 return getJavaName(attr.getException(index, constant_pool)); |
264 return getJavaName(attr.getException(index, constant_pool)); |
265 } catch (ConstantPoolException e) { |
265 } catch (ConstantPoolException e) { |
266 return report(e); |
266 return report(e); |
267 } |
267 } |