mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-22 13:05:09 +00:00
Merge pull request #1122 from soloturn/java18
Double.valueOf instead of new Double()
This commit is contained in:
commit
7e1a26051e
@ -30,7 +30,7 @@ public class XPoint2D {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return new Double(x).hashCode() + new Double(y).hashCode();
|
return Double.valueOf(x).hashCode() + Double.valueOf(y).hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final double getX() {
|
public final double getX() {
|
||||||
|
Loading…
Reference in New Issue
Block a user