Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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
languagegroovy
import groovy.transform.CompileStatic
...


@CompileStatic
class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
 ...
}

to:

Code Block
languagegroovy
...


class MySchedTaskJobDelegate implements SchedTaskJobDelegate {
 ...
}