bug fix in Item.java

updated pom version at 1.1.1

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/widgets/workspace-explorer@124542 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2016-02-24 17:09:32 +00:00
parent e04f66ff4d
commit 1352d3d157
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.portlets.widgets</groupId>
<artifactId>workspace-explorer</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
<name>gCube Workspace Explorer</name>
<description>
gCube Workspace Explorer widget allows to navigate (gcube) user workspace

View File

@ -44,6 +44,7 @@ public class Item implements IsSerializable {
public Item(String id, String name, boolean isFolder) {
this.id = id;
this.isFolder = isFolder;
this.name = name;
}
/**
@ -61,7 +62,6 @@ public class Item implements IsSerializable {
public Item(Item parent, String id, String name, ItemType type, String path, String owner, boolean isFolder, boolean isRoot) {
this(id, name, isFolder);
this.parent = parent;
this.name = name;
this.type = type;
this.path = path;
this.children = new ArrayList<Item>();