Hi everyone,
Having a problem in the fact that i have created a Comparator interface and a PersonComparator class. When I try to place this method in another of my classes
public void averages (Player a, Player b)
{
PersonComparator.compare (a, b);
}
i get an error non-static method compare(Player,Player) cannot be referenced from a static context.
As far as I can tell I'm not trying to reference it from a static context...
Any help is much appreciated.

