mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
IDEA-74709 Return should not be suggested inside method arguments
This commit is contained in:
@@ -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>)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user