1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-02-21 19:48:53 +02:00

remove obsolete method

This commit is contained in:
Christopher Fenner 2018-02-07 12:08:01 +01:00
parent 87a3a77f44
commit f6d1303317

View File

@ -7,13 +7,4 @@ class MapUtils implements Serializable {
static isMap(object){
return object in Map
}
@NonCPS
static fromList(List list){
Map map = [:]
for(String key : list){
map.put(key, null)
}
return map
}
}