diff --git a/vars/helper.groovy b/vars/helper.groovy
index 4efb57344b0656cf5a6e5f803b9b0635cf7ca91e..fc6cc754c16fa50dab54a7e8e9e12273f198302d 100644
--- a/vars/helper.groovy
+++ b/vars/helper.groovy
@@ -84,7 +84,7 @@ def gatherDependenciesDeep(ArrayList<String> dependencyList) {
     
     def stringList = dependencyList.join(' ')
     def output = sh ( script: "/home/msk_jenkins/findDependenciesDeep ${stringList}", returnStdout: true ).trim()    
-    def deepList = new ArrayList<String>(Arrays.asList(output.split("\n"))))
+    def deepList = new ArrayList<String>(Arrays.asList(output.split("\n")))
     return deepList.unique()
     
     /*