mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 02:48:04 +01:00
Clear up warnings
This commit is contained in:
@@ -15,18 +15,18 @@ public class Pair<T1, T2> {
|
||||
this.v2 = v2;
|
||||
}
|
||||
|
||||
public T1 first(){
|
||||
public T1 first() {
|
||||
return v1;
|
||||
}
|
||||
|
||||
public T2 second(){
|
||||
public T2 second() {
|
||||
return v2;
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
return o instanceof Pair &&
|
||||
equal(((Pair) o).first(), first()) &&
|
||||
equal(((Pair) o).second(), second());
|
||||
equal(((Pair<?, ?>) o).first(), first()) &&
|
||||
equal(((Pair<?, ?>) o).second(), second());
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
|
||||
Reference in New Issue
Block a user