package utils.comparator; import edu.neu.ccs.demeterf.demfgen.lib.List; import classes.*; /** Class to determine whether two player accounts belong to the same player * @author animesh * */ public class PlayerStoreComparator extends List.Pred> { PlayerID look; public PlayerStoreComparator(PlayerID pId) { look = pId; } public boolean huh(Pair arg0) { return (arg0.a.equals(look)); } }