Removed unused imports, TODO comment

This commit is contained in:
Richard Cordovano 2014-04-09 11:15:20 -04:00
parent a07153261e
commit 5b25aa1edd
2 changed files with 1 additions and 3 deletions

View File

@ -122,7 +122,7 @@ public class IngestManager {
* *
* @return True if any ingest jobs are in progress, false otherwise * @return True if any ingest jobs are in progress, false otherwise
*/ */
public boolean isIngestRunning() { // RJCTODO: Address synch or not synch and listeners public boolean isIngestRunning() {
return (ingestJobs.isEmpty() == false); return (ingestJobs.isEmpty() == false);
} }

View File

@ -41,8 +41,6 @@ import javax.swing.event.ListSelectionListener;
import javax.swing.filechooser.FileNameExtensionFilter; import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.table.AbstractTableModel; import javax.swing.table.AbstractTableModel;
import javax.swing.table.TableColumn; import javax.swing.table.TableColumn;
import org.openide.nodes.Children;
import org.openide.nodes.Node;
import org.sleuthkit.autopsy.corecomponents.OptionsPanel; import org.sleuthkit.autopsy.corecomponents.OptionsPanel;
import org.sleuthkit.autopsy.ingest.IngestManager; import org.sleuthkit.autopsy.ingest.IngestManager;
import org.sleuthkit.autopsy.ingest.IngestManager.IngestEvent; import org.sleuthkit.autopsy.ingest.IngestManager.IngestEvent;