Remove thumbnail supported test from DataResultViewerThumbnail.isSupported()

This commit is contained in:
Richard Cordovano 2014-07-29 15:24:00 -04:00
parent 56bc933c61
commit 7ffe07c00c

View File

@ -299,15 +299,8 @@ import org.sleuthkit.datamodel.TskCoreException;
if (selectedNode == null) {
return false;
}
Children ch = selectedNode.getChildren();
for (Node n : ch.getNodes()) {
if (ThumbnailViewChildren.isSupported(n)) {
return true;
}
}
return false;
}
@Override
public void setNode(Node givenNode) {