This commit is contained in:
kamhung
2015-11-30 17:59:34 +08:00
parent 56c458abc1
commit 781a84478d

View File

@@ -28,7 +28,7 @@ public final class DLong extends Number implements Comparable<DLong> {
return second;
}
public boolean compare(long one, long two) {
public boolean equals(long one, long two) {
return this.first == one && this.second == two;
}