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