*** 423,11 *** * * @param epochSecond the number of seconds from 1970-01-01T00:00:00Z * @param nanos the nanoseconds within the second, must be positive */ private Instant(long epochSecond, int nanos) { - super(); this.seconds = epochSecond; this.nanos = nanos; } //----------------------------------------------------------------------- --- 423,10 ---