Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
methodDuplicates
/
MappingField2Parameter.java
blob: cec5a52a586c3f5dffe582beaa9e54c921a53ddc [
file
]
class
Mapping
{
private
int
myInt
;
public
void
<
caret
>
method
(
int
p
)
{
myInt
=
p
+
1
;
}
public
void
context1
()
{
myInt
=
myInt
+
1
;
}
public
void
context2
()
{
myInt
=
this
.
myInt
+
1
;
}
}