redundant args: copy the file to avoid incompleted psi

This commit is contained in:
Anna Kozlova
2016-02-16 13:50:49 +01:00
parent ff05d1b0b4
commit abd1b44e85
3 changed files with 25 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
// "Remove explicit type arguments" "true"
import java.util.Collections;
import java.util.List;
enum ExposeRemotely {
NEVER("never", Collections.emptyList());
ExposeRemotely(String name, List<String> keys) {}
}

View File

@@ -0,0 +1,9 @@
// "Remove explicit type arguments" "true"
import java.util.Collections;
import java.util.List;
enum ExposeRemotely {
NEVER("never", Collections.<Str<caret>ing>emptyList());
ExposeRemotely(String name, List<String> keys) {}
}