IG: do not write default values to settings

This commit is contained in:
Bas Leijdekkers
2016-05-01 12:19:44 +02:00
parent 3e7a0aaef8
commit a19579a8d1
@@ -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