1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00

Do not explict cast to Set since it is coersed to the type of the variable anyway.

This commit is contained in:
Marcus Holl 2019-05-23 09:10:30 +02:00
parent f87349e0fe
commit cd5d114d52

View File

@ -23,7 +23,7 @@ class NeoCommandHelper {
this.user = user
this.password = password
this.source = source
this.extensions = extensions ?: (Set)[]
this.extensions = extensions ?: []
}
private String prolog() {