in javac-ast-extension/src/org/jetbrains/jps/javac/ast/api/JavacFileData.java [307:310]
public ModifiersStruct(Collection<Modifier> matched, Collection<String> unmatched) {
this.matched = matched == null || matched.isEmpty()? Collections.<Modifier>emptySet() : EnumSet.copyOf(matched);
this.unmatched = unmatched == null || unmatched.isEmpty()? Collections.<String>emptySet() : Collections.unmodifiableSet(new HashSet<>(unmatched));
}