jdk/src/share/classes/java/lang/CharacterName.java
changeset 10419 12c063b39232
parent 7803 56bc97d69d93
child 11275 7cb0861d512f
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
    81             } while (cpOff < cpEnd);
    81             } while (cpOff < cpEnd);
    82             strPool = new byte[total - cpEnd];
    82             strPool = new byte[total - cpEnd];
    83             dis.readFully(strPool);
    83             dis.readFully(strPool);
    84             refStrPool = new SoftReference<>(strPool);
    84             refStrPool = new SoftReference<>(strPool);
    85         } catch (Exception x) {
    85         } catch (Exception x) {
    86             throw new InternalError(x.getMessage());
    86             throw new InternalError(x.getMessage(), x);
    87         } finally {
    87         } finally {
    88             try {
    88             try {
    89                 if (dis != null)
    89                 if (dis != null)
    90                     dis.close();
    90                     dis.close();
    91             } catch (Exception xx) {}
    91             } catch (Exception xx) {}