mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
restore intention place; fix tests
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Push condition b inside method call" "true"
|
||||
// "Push condition 'b' inside method call" "true"
|
||||
class Foo {
|
||||
void bar(boolean b){
|
||||
String s = foo(b ? "true" : "false");
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Push condition b inside method call" "true"
|
||||
// "Push condition 'b' inside method call" "true"
|
||||
class Foo {
|
||||
void bar(boolean b){
|
||||
String s = b <caret>? foo("true") : foo("false");
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Push condition b inside method call" "false"
|
||||
// "Push condition 'b' inside method call" "false"
|
||||
class Foo {
|
||||
void bar(boolean b){
|
||||
String s = b <caret>? foo("true") : foo(false);
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Push condition b inside method call" "false"
|
||||
// "Push condition 'b' inside method call" "false"
|
||||
class Foo {
|
||||
void bar(boolean b){
|
||||
String s = b <caret>? foo("true", true) : foo("false", false);
|
||||
|
||||
Reference in New Issue
Block a user