skip known faulty intention in mad testing

This commit is contained in:
peter
2018-07-19 09:52:01 +02:00
parent ee4e31d32e
commit 7abaf7e4df
@@ -38,6 +38,7 @@ class JavaIntentionPolicy extends IntentionPolicy {
actionText.startsWith("Rename reference") || // doesn't change file text (starts live template)
actionText.equals("Remove") || // IDEA-177220
actionText.equals("Add \"use strict\" pragma") || // IDEA-187427
actionText.equals("Suppress for statement in injection") || // IDEA-187427
super.shouldSkipIntention(actionText);
}