|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2012, 2021, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -169,7 +169,8 @@ public static Comparator<OffsetDateTime> timeLineOrder() {
|
169 | 169 | *
|
170 | 170 | * @param datetime1 the first date-time to compare, not null
|
171 | 171 | * @param datetime2 the other date-time to compare to, not null
|
172 |
| - * @return the comparator value, negative if less, positive if greater |
| 172 | + * @return the comparator value, that is less than zero if {@code datetime1} is before {@code datetime2}, |
| 173 | + * zero if they are equal, greater than zero if {@code datetime1} is after {@code datetime2} |
173 | 174 | */
|
174 | 175 | private static int compareInstant(OffsetDateTime datetime1, OffsetDateTime datetime2) {
|
175 | 176 | if (datetime1.getOffset().equals(datetime2.getOffset())) {
|
@@ -1801,7 +1802,10 @@ public long toEpochSecond() {
|
1801 | 1802 | * consistent with {@code equals()}.
|
1802 | 1803 | *
|
1803 | 1804 | * @param other the other date-time to compare to, not null
|
1804 |
| - * @return the comparator value, negative if less, positive if greater |
| 1805 | + * @return the comparator value, that is the comparison with the {@code other}'s instant, if they are not equal; |
| 1806 | + * and if equal to the {@code other}'s instant, the comparison of the {@code other}'s local date-time |
| 1807 | + * @see #isBefore |
| 1808 | + * @see #isAfter |
1805 | 1809 | */
|
1806 | 1810 | @Override
|
1807 | 1811 | public int compareTo(OffsetDateTime other) {
|
|
3 commit comments
openjdk-notifier[bot] commentedon Jul 27, 2023
Review
Issues
RogerRiggs commentedon Jul 31, 2023
/backport jdk21
A java.time doc-only change for JDK 21; the CSR review included consideration for JDK 21.
openjdk[bot] commentedon Jul 31, 2023
@RogerRiggs the backport was successfully created on the branch RogerRiggs-backport-8650026f in my personal fork of openjdk/jdk21. To create a pull request with this backport targeting openjdk/jdk21:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21: