1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00

Remove redundant needLoadExtensions() check in extractConvertedExtensions

Co-authored-by: nixel2007 <1132840+nixel2007@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-09 14:50:37 +00:00
parent 132814562c
commit 5c09953e6b

View File

@@ -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)