PreferMostUsedWeigher is moved down

This commit is contained in:
Dmitry Batkovich
2017-04-10 15:55:07 +03:00
parent e4f1994aee
commit 80548595d3
4 changed files with 55 additions and 10 deletions
@@ -0,0 +1,35 @@
class Foo {
public String someMethod1() {
return null;
}
public String someMethod2(String s) {
return null;
}
public Runnable someMethod3() {
return null;
}
void m() {
someMethod1();
someMethod1();
someMethod1();
someMethod2("");
someMethod2("");
someMethod2("");
someMethod2("");
someMethod3();
someMethod3();
someMethod3();
someMethod3();
someMethod3();
}
void mm(Foo f) {
<caret>
}
}