Changelog will be posted, add alot
This commit is contained in:
@@ -5,18 +5,17 @@ package com.massivecraft.factions.util;
|
||||
*/
|
||||
public class Pair<Left, Right> {
|
||||
|
||||
public static <Left, Right> Pair<Left, Right> of(Left left, Right right) {
|
||||
return new Pair<>(left, right);
|
||||
}
|
||||
|
||||
private final Left left;
|
||||
private final Right right;
|
||||
|
||||
private Pair(Left left, Right right) {
|
||||
this.left = left;
|
||||
this.right = right;
|
||||
}
|
||||
|
||||
public static <Left, Right> Pair<Left, Right> of(Left left, Right right) {
|
||||
return new Pair<>(left, right);
|
||||
}
|
||||
|
||||
public Left getLeft() {
|
||||
return this.left;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user