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