mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
attempt to clarify the description
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
class X {
|
||||
void bar(boolean b) {
|
||||
String str = <spot>foo(b ? "true": "false")</spot>;
|
||||
String str = foo(b ? "true": "false");
|
||||
}
|
||||
|
||||
String foo(String p) {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention pushes condition inside method call when both branches call same method and only one argument differs.
|
||||
This intention pushes the condition of a conditional expression, with identical method calls on both branches,
|
||||
inside the method call if possible.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user