jdk/src/share/classes/java/awt/geom/AffineTransform.java
changeset 10419 12c063b39232
parent 7006 05505fff1342
child 15994 5c8a3d840366
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
  3854     public Object clone() {
  3854     public Object clone() {
  3855         try {
  3855         try {
  3856             return super.clone();
  3856             return super.clone();
  3857         } catch (CloneNotSupportedException e) {
  3857         } catch (CloneNotSupportedException e) {
  3858             // this shouldn't happen, since we are Cloneable
  3858             // this shouldn't happen, since we are Cloneable
  3859             throw new InternalError();
  3859             throw new InternalError(e);
  3860         }
  3860         }
  3861     }
  3861     }
  3862 
  3862 
  3863     /**
  3863     /**
  3864      * Returns the hashcode for this transform.
  3864      * Returns the hashcode for this transform.