jdk/src/share/classes/java/util/TimeZone.java
changeset 10419 12c063b39232
parent 8521 ab64b8d109b8
child 11902 a94ba35d9c4a
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   737         try {
   737         try {
   738             TimeZone other = (TimeZone) super.clone();
   738             TimeZone other = (TimeZone) super.clone();
   739             other.ID = ID;
   739             other.ID = ID;
   740             return other;
   740             return other;
   741         } catch (CloneNotSupportedException e) {
   741         } catch (CloneNotSupportedException e) {
   742             throw new InternalError();
   742             throw new InternalError(e);
   743         }
   743         }
   744     }
   744     }
   745 
   745 
   746     /**
   746     /**
   747      * The null constant as a TimeZone.
   747      * The null constant as a TimeZone.