diff --git a/designer-base/src/com/fr/file/FileNodeFILE.java b/designer-base/src/com/fr/file/FileNodeFILE.java index 204152c7d0..9511376646 100644 --- a/designer-base/src/com/fr/file/FileNodeFILE.java +++ b/designer-base/src/com/fr/file/FileNodeFILE.java @@ -34,9 +34,7 @@ public class FileNodeFILE implements FILE { parentDir = fn.getParent(); } - this.node = new FileNode(StableUtils.pathJoin(new String[]{ - parentDir, name - }), isDir); + this.node = new FileNode(StableUtils.pathJoin(parentDir, name), isDir); this.envPath = WorkContext.getCurrent().getPath(); }