jdk/src/share/classes/java/util/Calendar.java
changeset 10419 12c063b39232
parent 8521 ab64b8d109b8
child 11681 9a1076231db7
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
  2510             other.zone = (TimeZone) zone.clone();
  2510             other.zone = (TimeZone) zone.clone();
  2511             return other;
  2511             return other;
  2512         }
  2512         }
  2513         catch (CloneNotSupportedException e) {
  2513         catch (CloneNotSupportedException e) {
  2514             // this shouldn't happen, since we are Cloneable
  2514             // this shouldn't happen, since we are Cloneable
  2515             throw new InternalError();
  2515             throw new InternalError(e);
  2516         }
  2516         }
  2517     }
  2517     }
  2518 
  2518 
  2519     private static final String[] FIELD_NAME = {
  2519     private static final String[] FIELD_NAME = {
  2520         "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH", "DAY_OF_MONTH",
  2520         "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH", "DAY_OF_MONTH",