don't always prefer common methods like Object#equals once they ever were chosen

choosing another method from a subclass now also affects all superclass methods statistics
This commit is contained in:
peter
2013-02-12 19:23:44 +01:00
parent 5d08fcc141
commit 8b63d897e2
4 changed files with 58 additions and 15 deletions
@@ -0,0 +1,11 @@
class Foo1 { boolean method1() {} }
class Foo2 { boolean method2() {} }
class Foo3 { boolean method3() {} }
public class MyFirstTestClassFoo {
void foo(Foo1 f1, Foo2 f2, Foo3 f3) {
f1.<caret>
}
}