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