From 5c09953e6b882e3d2e3d5a1c3880f4edd29fceb1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 9 Aug 2025 14:50:37 +0000 Subject: [PATCH] Remove redundant needLoadExtensions() check in extractConvertedExtensions Co-authored-by: nixel2007 <1132840+nixel2007@users.noreply.github.com> --- src/ru/pulsar/jenkins/library/steps/GetExtensions.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ru/pulsar/jenkins/library/steps/GetExtensions.groovy b/src/ru/pulsar/jenkins/library/steps/GetExtensions.groovy index 1c62882..d0ec31f 100644 --- a/src/ru/pulsar/jenkins/library/steps/GetExtensions.groovy +++ b/src/ru/pulsar/jenkins/library/steps/GetExtensions.groovy @@ -87,7 +87,7 @@ class GetExtensions implements Serializable { } private void extractConvertedExtensions(String sourceDirName, IStepExecutor steps) { - if (config.sourceFormat == SourceFormat.EDT && config.needLoadExtensions()) { + if (config.sourceFormat == SourceFormat.EDT) { // unstash and unzip the edt to designer format transformation steps.unstash(EdtToDesignerFormatTransformation.EXTENSION_ZIP_STASH) steps.unzip(sourceDirName, EdtToDesignerFormatTransformation.EXTENSION_ZIP)