disable "invert if condition" on invalid negation

This commit is contained in:
peter
2017-07-12 16:50:37 +02:00
parent 88c5ca5332
commit adbd75d086
2 changed files with 7 additions and 0 deletions
@@ -0,0 +1,6 @@
// "Invert 'if' condition" "false"
class A {
public void foo(boolean c) {
if (<caret>!) return;
}
}