-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8277868: Use Comparable.compare() instead of surrogate code #6575
Conversation
👋 Welcome back stsypanov! A progress list of the required criteria for merging this PR into |
@stsypanov The following labels will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes to java.net look good. Please obtain approval from reviewers in the other areas before integrating.
@@ -251,7 +246,7 @@ private void moveWithinTableRange(JTable table, int dx, int dy) { | |||
} | |||
|
|||
private static int sign(int num) { | |||
return (num < 0) ? -1 : ((num == 0) ? 0 : 1); | |||
return Integer.compare(num, 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
=> Integer.signum(num)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The core-libs file changes look fine.
A 'client' reviewer should take a look too.
|
@stsypanov This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 295 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@dfuch, @RogerRiggs, @aivanov-jdk) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
@@ -112,15 +112,15 @@ public Float(Point2D p1, Point2D p2) { | |||
* @since 1.2 | |||
*/ | |||
public double getX1() { | |||
return (double) x1; | |||
return x1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do these changes have to do with the subject of the PR ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a tiny clean-up in on of affected files. Do you want this to be reverted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe it makes sense to preserve the cast: the fields are of type float
and explicit cast hints there's a type conversion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted
|
||
return result; | ||
return Float.compare(mStart, otherStart); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need the variable any more, do we ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inlined
@@ -3417,7 +3417,7 @@ private void updateTime() { | |||
|
|||
private int compareTo(long t) { | |||
long thisTime = getMillisOf(this); | |||
return (thisTime > t) ? 1 : (thisTime == t) ? 0 : -1; | |||
return Long.compare(thisTime, t); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably, in this case thisTime
variable can also be dropped.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inlined
public int compareTo(Date anotherDate) { | ||
long thisTime = getMillisOf(this); | ||
long anotherTime = getMillisOf(anotherDate); | ||
return (thisTime<anotherTime ? -1 : (thisTime==anotherTime ? 0 : 1)); | ||
return Long.compare(thisTime, anotherTime); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like local variables can also be dropped here as each value is used once.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inlined
(this.leastSigBits < val.leastSigBits ? -1 : | ||
(this.leastSigBits > val.leastSigBits ? 1 : | ||
0)))); | ||
Long.compare(this.leastSigBits, val.leastSigBits))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this case Javadoc specifies only -1, 0 or 1 can be returned. Long.compare
does not specify this but returns these values. Couldn't it cause any problems in the future if implementation of Long.compare
is changed?
Does it make sense to use Long.compare
for mostSigBits
too?
int mostSigBits = Long.compare(this.mostSigBits, val.mostSigBits);
return mostSigBits != 0 ? mostSigBits : Long.compare(this.leastSigBits, val.leastSigBits);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This behavior is specified in Comparator
itself, so is hardly to be ever changed, I think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This behavior is specified in
Comparator
itself, so is hardly to be ever changed, I think
Not quite. Comparator.compare
returns: “a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.” Comparable.compareTo
does the same. Yet Javadoc for UUID
specifically requires -1
, 0
or 1
, which is stricter. However, the implementation of Long.compare
complies with this requirement even though it's not specified.
Probably, it makes sense to update the Javadoc for UUID
and relax the requirement to “a negative integer, zero, or a positive integer.”
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I didn't make myself clear. It wasn't a showstopper but it's still an issue.
This kind of change to Javadoc requires a CSR therefore it's better to separate it from this changeset which touches other files.
I see two options: 1) leave this unchanged and update implementation together with Javadoc; or 2) integrate the update to the implementation which you already have and update the Javadoc in a follow-up bug.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The suggestion to compare mostSigBits
using Long.compare
if it looks reasonable still applies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, let me revert JavaDoc and apply the suggestion
@@ -112,15 +112,15 @@ public Float(Point2D p1, Point2D p2) { | |||
* @since 1.2 | |||
*/ | |||
public double getX1() { | |||
return (double) x1; | |||
return x1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe it makes sense to preserve the cast: the fields are of type float
and explicit cast hints there's a type conversion.
/integrate |
@stsypanov |
/sponsor |
Going to push as commit 20db780.
Your commit was automatically rebased without conflicts. |
@RogerRiggs @stsypanov Pushed as commit 20db780. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
As it turns out replacing the code was not 100% equivalent and a test failure resulted. Double.compare and the original code handle the non-numeric forms of Double differently. |
Instead of something like
we can use
return Long.compare(x, y);
All replacements are done with IDE.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/6575/head:pull/6575
$ git checkout pull/6575
Update a local copy of the PR:
$ git checkout pull/6575
$ git pull https://git.openjdk.java.net/jdk pull/6575/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 6575
View PR using the GUI difftool:
$ git pr show -t 6575
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/6575.diff