Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
ExitPoints3.java
blob: acc314bad83f13b8e4ffdc2325b15b3e67929ff5 [
file
]
class
Test
{
void
foo
()
{
if
(
cond1
){
<
selection
>
if
(
cond2
)
return
;
x
();</
selection
>
}
else
if
(
cond3
){
}
}
}