mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
unresolved qualifiers in ref expressions chain (follow IDEA-CR-24382)
This commit is contained in:
+1
-1
@@ -11,7 +11,7 @@ class ImmutableSet<T> {
|
||||
}
|
||||
|
||||
public class Test {
|
||||
private static final Set<String> S = com.google.common.collect.ImmutableSet.of("foo", "bar", "baz");
|
||||
private static final Set<String> S = ImmutableSet.of("foo", "bar", "baz");
|
||||
|
||||
void testOr(String s) {
|
||||
if(S.contains(s)) {
|
||||
|
||||
Reference in New Issue
Block a user