mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-15 09:49:10 +07:00
IDEA-235296 Refactor ensureCodeBlock: AddAssertStatementFix updated
GitOrigin-RevId: e1e2f6021664be235b663876fe6629729fd0a4ef
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f245722610
commit
0f4d8695e9
+3
-1
@@ -1,7 +1,9 @@
|
||||
// "Assert 'container != null'" "true"
|
||||
import java.util.function.Supplier;
|
||||
|
||||
class A{
|
||||
void test(){
|
||||
Object container = null;
|
||||
Runnable r = () -> container == null ? container.toS<caret>tring() : "";
|
||||
Supplier<String> r = () -> container == null ? container.toS<caret>tring() : "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user