1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00

Remove not needed merge method from ConfigurationMerger

The other merge method called in the body of that method here does not exist.
So any call to this method would end up in some method not found exception or similar.
This commit is contained in:
Marcus Holl 2018-09-06 09:25:53 +02:00
parent 50ac5b0ac9
commit c5cce5a3a3

View File

@ -23,13 +23,4 @@ class ConfigurationMerger {
merged = merge(parameters, parameterKeys, merged)
return merged
}
@NonCPS
static Map merge(
def script, def stepName,
Map parameters, Set parameterKeys,
Set stepConfigurationKeys
) {
merge(script, stepName, parameters, parameterKeys, [:], stepConfigurationKeys)
}
}