IDEA-74709 Return should not be suggested inside method arguments

This commit is contained in:
peter
2011-09-23 16:14:26 +02:00
parent 54ffb9b8c9
commit 5f4f51af48
6 changed files with 103 additions and 94 deletions
@@ -0,0 +1,10 @@
import javax.swing.*;
import java.awt.*;
public class Bar {
public static void main(String[] args) {
boolean retrere = false;
foo(args == null ? true : ret<caret>)
}
}
@@ -0,0 +1,10 @@
import javax.swing.*;
import java.awt.*;
public class Bar {
public static void main(String[] args) {
boolean retrere = false;
foo(args == null ? true : retrere<caret>)
}
}