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