Closed gruberrolandvaltech closed 4 years ago
Interpolated Strings are transformed to GString which leads to issues in e.g. doSetPropoerty(). Then JCR stores a binary instead of the String. The GString should be converted to String automatically.
https://groovy-lang.org/syntax.html#_double_quoted_string
Example: def name = 'Foo' // a plain string def greeting = "Hello ${name}"
Methods to be updated:
Done
Interpolated Strings are transformed to GString which leads to issues in e.g. doSetPropoerty(). Then JCR stores a binary instead of the String. The GString should be converted to String automatically.
https://groovy-lang.org/syntax.html#_double_quoted_string
Example: def name = 'Foo' // a plain string def greeting = "Hello ${name}"
Methods to be updated: