Created
July 19, 2019 07:05
-
-
Save dove-young/93d8a16717459fe07d7936a988822561 to your computer and use it in GitHub Desktop.
workaround org.codehaus.groovy.runtime.NullObject
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| s = "something" | |
| t = "${s} else" | |
| Map m = [:] // [s: t] | |
| m[s] = t | |
| println m[s].getClass().name //org.codehaus.groovy.runtime.GStringImpl | |
| println m[s] //something else |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment