Ignore:
Timestamp:
2003-05-23T16:40:57+12:00 (21 years ago)
Author:
jmt12
Message:

bug fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/valuetree/GValueModel.java

    r4293 r4319  
    195195     public boolean isHierarchy() {
    196196          boolean result = false;
     197          // We are a hierarchy if our element says so....
     198          if(element.isHierarchy()) {
     199                return true;
     200          }
     201          // Or if our children are actually a hierarchy.
    197202          for(int i = 0; i < root.getChildCount() && !result; i++) {
    198203                GValueNode node = (GValueNode) root.getChildAt(i);
Note: See TracChangeset for help on using the changeset viewer.