Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
beforeContinue2.java
blob: 0bb63f2db9be41a47a1c795532e5abf45dc59158 [
file
]
// "Invert If Condition" "true"
class
A
{
void
foo
()
{
String
[]
entries
=
null
;
for
(
String
entry
:
entries
)
{
<
caret
>
if
(
entry
==
null
)
continue
;
System
.
out
.
println
(
"not null"
);
}
}
}