repo.or.cz
/
fedora-idea.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
IDEADEV-25972
[fedora-idea.git]
/
testData
/
refactoring
/
convertToInstanceMethod
/
Simple.java.after
blob
b620826c72e9f095fc1aa2260bf4194c4009cbe6
1
public class Y {
2
public void foo() {
3
}
4
5
void method() {
6
System.out.println(this);
7
foo();
8
}
9
}
10
public class X {
11
12
{
13
Y y = new Y();
14
y.method();
15
new Y().method();
16
}
17
}