The method is implemented like this:
public boolean isStructure() {
return (getChildren().size() == 0);
}
It should be:
public boolean isStructure() {
return (getChildren().size() > 0);
}
Original issue reported on code.google.com by fady.mou...@gmail.com on 19 Feb 2012 at 1:15
Original issue reported on code.google.com by
fady.mou...@gmail.com
on 19 Feb 2012 at 1:15