CollectionFactory: factory methods added. Got rid of Guava dependency

This commit is contained in:
Danila Ponomarenko
2012-06-04 14:23:36 +04:00
parent 43b14bcad0
commit 639e90a5d9
21 changed files with 124 additions and 67 deletions
@@ -40,7 +40,7 @@ public class LightModifierList extends LightElement implements PsiModifierList {
public LightModifierList(PsiManager manager, final Language language, String... modifiers) {
super(manager, language);
myModifiers = CollectionFactory.newTroveSet(modifiers);
myModifiers = CollectionFactory.troveSet(modifiers);
}
public void addModifier(String modifier) {