JRuby: implement/overrides method gutter shouldn't be show when methods have different parameters count. Or you can show error message about wrong params count.
Example
// Foo.java
publicinterface Foo {
void foo();
}
# jruby file
class Boo
include Foo
def foo(param1, param2)
end
end
Description
JRuby: implement/overrides method gutter shouldn't be show when methods have different parameters count. Or you can show error message about wrong params count.
Example
// Foo.java
publicinterface Foo {
void foo();
}
# jruby file
class Boo
include Foo
def foo(param1, param2)
end
end