*** 524,11 *** * * @param seconds the length of the duration in seconds, positive or negative * @param nanos the nanoseconds within the second, from 0 to 999,999,999 */ private Duration(long seconds, int nanos) { - super(); this.seconds = seconds; this.nanos = nanos; } //----------------------------------------------------------------------- --- 524,10 ---