mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-21 20:45:10 +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
|
||||
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() {
|
||||
|
Loading…
Reference in New Issue
Block a user