Fixed an issue adding objects to groups

This commit is contained in:
Robert 2013-11-25 17:24:07 -05:00
parent a172592989
commit f5bbcbd925

View file

@ -30,7 +30,7 @@ public class Group<J>
protected boolean isValid(J obj)
{
return obj != null && memebers.contains(obj);
return obj != null && !memebers.contains(obj);
}
public boolean addMemeber(J obj)