This quick fix prevent possible NullPonterException during chain methods or properties call. E.g.
domain?.getZone().getName()
replaces by
domain?.getZone()?.getName()
Powered by InspectorGroovy