提交 e1336d20 编写于 作者: R rriggs

8031103: java.time.Duration has wrong Javadoc Comments in toDays() and toHours()

Summary: Correct specification for Duration.toDays, toHours
Reviewed-by: lancea, alanb
上级 dbd5dc15
...@@ -1112,29 +1112,29 @@ public final class Duration ...@@ -1112,29 +1112,29 @@ public final class Duration
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
/** /**
* Gets the number of minutes in this duration. * Gets the number of days in this duration.
* <p> * <p>
* This returns the total number of minutes in the duration by dividing the * This returns the total number of days in the duration by dividing the
* number of seconds by 86400. * number of seconds by 86400.
* This is based on the standard definition of a day as 24 hours. * This is based on the standard definition of a day as 24 hours.
* <p> * <p>
* This instance is immutable and unaffected by this method call. * This instance is immutable and unaffected by this method call.
* *
* @return the number of minutes in the duration, may be negative * @return the number of days in the duration, may be negative
*/ */
public long toDays() { public long toDays() {
return seconds / SECONDS_PER_DAY; return seconds / SECONDS_PER_DAY;
} }
/** /**
* Gets the number of minutes in this duration. * Gets the number of hours in this duration.
* <p> * <p>
* This returns the total number of minutes in the duration by dividing the * This returns the total number of hours in the duration by dividing the
* number of seconds by 3600. * number of seconds by 3600.
* <p> * <p>
* This instance is immutable and unaffected by this method call. * This instance is immutable and unaffected by this method call.
* *
* @return the number of minutes in the duration, may be negative * @return the number of hours in the duration, may be negative
*/ */
public long toHours() { public long toHours() {
return seconds / SECONDS_PER_HOUR; return seconds / SECONDS_PER_HOUR;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册