class FooInterceptor
java_implements 'org.apache.flume.interceptor.Interceptor'
java_signature "void initialize()"
def init; end
...snip...
end
Results in the below error when compiling with jrubyc.
error: initialize() in FooInterceptor cannot override initialize() in RubyObject
public void initialize() {
^
return type void is not compatible with IRubyObject
Is there a way around this that isn't published?