remove the pair

This commit is contained in:
yugecin
2017-03-05 21:20:56 +01:00
parent 2f1f860ca3
commit 8d19288f81
3 changed files with 13 additions and 20 deletions

View File

@@ -660,14 +660,4 @@ public class Utils {
(float) (Options.height / 2d + Math.sin(ang) * d)
};
}
public static class Pair<F, S> {
public F first;
public S second;
public Pair(F first, S second) {
this.first = first;
this.second = second;
}
}
}