Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
1.0-RC-1
-
None
-
None
Description
It seems that property access via categories is broken in RC1. This
worked before as the Grails help feature used it, but it no longer
does. Test case:
class PropertyCategory {
static getSomething(Object self)
}
use(PropertyCategory) {
println getSomething() // this works
}
use(PropertyCategory) {
println something // this fails with MPE
}