DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- change parent/version from 3.0.13 to 3.0.14
- change properties/syncope.version from 3.013 to 3.0.14
Code
Remove the @CompileStatic annotation from all Groovy implementations, e.g. from:
| Code Block | ||
|---|---|---|
| ||
import groovy.transform.CompileStatic
...
@CompileStatic
class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
...
} |
to:
| Code Block | ||
|---|---|---|
| ||
...
class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
...
} |