I have this code:
public static String SelectRandomFromTemplate(String template,int count) { String[] split = template.split(\"|\"); List
I think that replacing:
List list = Arrays.asList(split);
with
List list = new ArrayList(Arrays.asList(split));
resolves the problem.