DRY-40: Possible bug in boolean method invocations
public class Foo {
int foo() {
bar(1);
bar(true);
}long bar(int f) {
return 9;
}double bar(boolean f) {
return 9;
}
}Cannot be typed
Submitted on 16 April 2005 at 22:16
Issue Log
On 17 April 2005 at 17:52 Jira commented:
DRY-40, martin:
Fixed in 9602
Log in to post comments