removed unused variables

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7592 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
orbiter 2011-03-14 21:03:37 +00:00
parent e6c3507b17
commit 8edaccfedf

View File

@ -5,12 +5,9 @@ import java.util.List;
public class GridTree {
private String name, description;
private List<GridTree> children;
public GridTree(String name, String description) {
this.name = name;
this.description = description;
public GridTree() {
this.children = null;
}