Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.5
-
Fix Version/s: 1.7.6, 1.8-beta-3
-
Component/s: class generator
-
Labels:None
-
Number of attachments :
Description
Hi!
I am having problems with the following code:
class Del {
public void doSomething(boolean flag = true)
}
class AClass
{ @Delegate Del del = new Del() }def a = new AClass()
a.doSomething(true) // works fine
a.doSomething() // methodMissingException
Thank you!
Done