jdk/src/share/classes/java/awt/BufferCapabilities.java
changeset 10419 12c063b39232
parent 5506 202f599c92aa
child 23010 6dadb192ad81
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   135     public Object clone() {
   135     public Object clone() {
   136         try {
   136         try {
   137             return super.clone();
   137             return super.clone();
   138         } catch (CloneNotSupportedException e) {
   138         } catch (CloneNotSupportedException e) {
   139             // Since we implement Cloneable, this should never happen
   139             // Since we implement Cloneable, this should never happen
   140             throw new InternalError();
   140             throw new InternalError(e);
   141         }
   141         }
   142     }
   142     }
   143 
   143 
   144     // Inner class FlipContents
   144     // Inner class FlipContents
   145     /**
   145     /**