add assert != null fix should be disabled on the class level (EA-66814 - assert: AddAssertStatementFix.applyFix)

This commit is contained in:
Anna Kozlova
2015-03-23 20:33:20 +01:00
parent 5ed4840dad
commit 8a56a94ff1
3 changed files with 10 additions and 4 deletions
@@ -0,0 +1,5 @@
// "Assert 'myFoo != null'" "false"
class A{
private final String myFoo = null;
String myBar = my<caret>Foo.substring(0);
}