3
votes
1answer
52 views
How do I undo meta class changes after executing GroovyShell?
For example, if I execute a Groovy script, which modifies the String meta class, adding a method foo()
GroovyShell shell1 = new GroovyShell();
shell1.evaluate("String.metaClass.foo = {-> …
