jdk/src/share/classes/java/text/DigitList.java
changeset 10419 12c063b39232
parent 5506 202f599c92aa
child 14014 da3648e13e67
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   630             System.arraycopy(digits, 0, newDigits, 0, digits.length);
   630             System.arraycopy(digits, 0, newDigits, 0, digits.length);
   631             other.digits = newDigits;
   631             other.digits = newDigits;
   632             other.tempBuffer = null;
   632             other.tempBuffer = null;
   633             return other;
   633             return other;
   634         } catch (CloneNotSupportedException e) {
   634         } catch (CloneNotSupportedException e) {
   635             throw new InternalError();
   635             throw new InternalError(e);
   636         }
   636         }
   637     }
   637     }
   638 
   638 
   639     /**
   639     /**
   640      * Returns true if this DigitList represents Long.MIN_VALUE;
   640      * Returns true if this DigitList represents Long.MIN_VALUE;