Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
InstanceMethodDuplicatesInStaticContext.java
blob: 145d22715436627ca52f6d2aafd8a1308fb9258f [
file
]
class
Class1
{
public
static
int
staticMethod
()
{
int
a
=
1
;
int
b
=
2
;
int
temp
=
a
+
b
;
return
temp
*
2
;
}
public
int
foo
(
int
a
,
int
b
)
{
<
selection
>
int
temp
=
a
+
b
;
return
temp
*
2
;</
selection
>
}
}