jdk/src/share/classes/java/awt/Insets.java
changeset 10419 12c063b39232
parent 5506 202f599c92aa
child 23010 6dadb192ad81
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   175     public Object clone() {
   175     public Object clone() {
   176         try {
   176         try {
   177             return super.clone();
   177             return super.clone();
   178         } catch (CloneNotSupportedException e) {
   178         } catch (CloneNotSupportedException e) {
   179             // this shouldn't happen, since we are Cloneable
   179             // this shouldn't happen, since we are Cloneable
   180             throw new InternalError();
   180             throw new InternalError(e);
   181         }
   181         }
   182     }
   182     }
   183     /**
   183     /**
   184      * Initialize JNI field and method IDs
   184      * Initialize JNI field and method IDs
   185      */
   185      */