Oh, was I supposed to subclass and re-assign these statics?

That's a terrible idea. I think 'final' was just forgotten.
This commit is contained in:
Ray J. Greenwell
2014-10-29 10:08:54 -07:00
parent 2290ee3f3d
commit 2740da3abf
@@ -444,9 +444,9 @@ public class ImportSet
protected HashSet<String> _imports = Sets.newHashSet(); protected HashSet<String> _imports = Sets.newHashSet();
protected List<String> _pushed = Lists.newArrayList(); protected List<String> _pushed = Lists.newArrayList();
protected static Pattern _splitter = Pattern.compile("\\*"); protected static final Pattern _splitter = Pattern.compile("\\*");
protected static List<String> IMPORT_GROUPS = Lists.newArrayList( protected static final List<String> IMPORT_GROUPS = Lists.newArrayList(
"flash", "flash",
"fl", "fl",
"java", "java",