mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IG: do not write default values to settings
This commit is contained in:
+3
-2
@@ -39,9 +39,10 @@ public class SharedThreadLocalRandomInspectionBase extends BaseInspection {
|
||||
protected final MethodMatcher myMethodMatcher;
|
||||
|
||||
public SharedThreadLocalRandomInspectionBase() {
|
||||
myMethodMatcher = new MethodMatcher(true, "ignoreArgumentToMethods")
|
||||
myMethodMatcher = new MethodMatcher(false, "ignoreArgumentToMethods")
|
||||
.add("java.math.BigInteger", ".*")
|
||||
.add("java.util.Collections", "shuffle");
|
||||
.add("java.util.Collections", "shuffle")
|
||||
.finishDefault();
|
||||
}
|
||||
|
||||
@Nls
|
||||
|
||||
Reference in New Issue
Block a user