We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider the following:
class A { def foo(int i = 0) { } } class B { @Delegate A a = new A() def foo() { } }
Declared method B#foo() is not replaced by delegate method A#foo(), but editor displays that it is.
B#foo()
A#foo()
The text was updated successfully, but these errors were encountered:
Fix for #1430: test call arguments against DSLD method contribution
dc9d5fc
Sorry, something went wrong.
Fix for #1430: DefaultGroovyMethods#plus returns Object[] not T[]
DefaultGroovyMethods#plus
Object[]
T[]
9970f98
https://issues.apache.org/jira/browse/GROOVY-6837
eric-milles
No branches or pull requests
Consider the following:
Declared method
B#foo()
is not replaced by delegate methodA#foo()
, but editor displays that it is.The text was updated successfully, but these errors were encountered: