langtools/src/share/classes/com/sun/tools/javap/AttributeWriter.java
changeset 733 b76c4357c649
parent 727 cb50c1ae7bab
child 735 372aa565a221
equal deleted inserted replaced
732:ff896d24d1c2 733:b76c4357c649
   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         }