Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
CodeDuplicatesWithMultExitPoints.java
blob: 2111f4915d4a683a5114c5d577a9332d18d44010 [
file
]
class
A
{
int
foo
(
Object
o
)
{
<
selection
>
if
(
o
==
null
)
return
0
;</
selection
>
if
(
o
==
null
)
return
0
;
return
1
;
}
}