I\'m new to Java so I\'m probably doing something wrong here, I want to create an array of Sets and I get an error (from Eclipse). I have a class:
public class R
Arrays don't support Generics. Use an ArrayList:
ArrayList
ArrayList> groupMembers = new ArrayList>();