Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
NullableCheck.java
blob: d1bb611764dabe765e41449c7e3b6479e088558f [
file
]
class
Test
{
Object
foo
()
{
<
selection
>
Object
o
=
""
;
for
(
int
i
=
0
;
i
<
5
;
i
++)
{
if
(
i
==
10
){
o
=
null
;
}
}
if
(
o
==
null
)
{
return
null
;
}</
selection
>
System
.
out
.
println
(
o
);
return
o
;
}
}