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
/
inlineToAnonymousClass
/
GenericsSubstitute.java.after
blob
18f37f88542cb4ed6d7135804dc215a3ae731a32
1
import java.util.*;
2
3
class A {
4
private Comparator<String> b = new Comparator<String>() {
5
public int compare(String s1, String s2) {
6
return 0;
7
}
8
};
9
10
}