Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
convertToInstanceMethod
/
Simple.java.after
blob: 69449ae2ce761485808044d145e27245247603b7 [
file
]
public
class
Y
{
void
method
()
{
System
.
out
.
println
(
this
);
foo
();
}
public
void
foo
()
{
}
}
public
class
X
{
{
Y y
=
new
Y
();
y
.
method
();
new
Y
().
method
();
}
}