File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
plugin/src/main/java/org/jenkinsci/plugins/workflow/cps Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4444import com .thoughtworks .xstream .io .HierarchicalStreamReader ;
4545import com .thoughtworks .xstream .io .HierarchicalStreamWriter ;
4646import com .thoughtworks .xstream .mapper .Mapper ;
47+ import groovyjarjarasm .asm .MethodTooLargeException ;
4748import groovy .lang .GroovyShell ;
4849import hudson .ExtensionList ;
4950import hudson .model .Action ;
@@ -638,7 +639,7 @@ private CpsScript parseScript() throws IOException {
638639 for (Entry <String , String > e : loadedScripts .entrySet ()) {
639640 shell .reparse (e .getKey (), e .getValue ());
640641 }
641- } catch (groovyjarjarasm . asm . MethodTooLargeException x ) {
642+ } catch (MethodTooLargeException x ) {
642643 LOGGER .log (Level .SEVERE , "FAILED to parse WorkflowScript (the pipeline script) due to MethodTooLargeException: " + x .toString ());
643644 closeShells ();
644645 throw x ;
You can’t perform that action at this time.
0 commit comments