mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-27 00:41:51 +07:00
[java-inspections] SlowAbstractSetRemoveAllInspection: disable warning for CopyOnWriteArraySet qualifier
GitOrigin-RevId: e2d2f76bdf94e61c8dfa2bd874d2d8fd2e613439
This commit is contained in:
committed by
intellij-monorepo-bot
parent
deb9027cac
commit
99007aee1f
@@ -0,0 +1,10 @@
|
||||
// "Fix all 'Call to 'set.removeAll(list)' may work slowly' problems in file" "false"
|
||||
|
||||
import java.util.*;
|
||||
import java.util.concurrent.*;
|
||||
|
||||
class Test {
|
||||
void foo(CopyOnWriteArraySet<Integer> source, List<Integer> removals) {
|
||||
source.removeAll<caret>(removals);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user