Changeset 10632


Ignore:
Timestamp:
2005-09-26T10:16:16+12:00 (19 years ago)
Author:
kjdon
Message:

removed the check for floppy drives in the list roots bit. used to cause errors, but doesn't seem to now...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/file/WorkspaceTreeNode.java

    r10342 r10632  
    170170        for (int i = 0; i < roots.length; i++) {
    171171            // Only add root if it isn't a floppy drive
    172             if (!FileSystemView.getFileSystemView().isFloppyDrive(roots[i])) {
    173             child_nodes.add(addChildNode(roots[i]));
    174             }
     172            // this used to cause problems, I don't think it does now...
     173            //if (!FileSystemView.getFileSystemView().isFloppyDrive(roots[i])) {
     174            child_nodes.add(addChildNode(roots[i]));
     175            // }
    175176        }
    176177        }
Note: See TracChangeset for help on using the changeset viewer.