mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Merge pull request #3055 from dgrove727/Aid20_FixedBundleMessages
Fixed constructor.
This commit is contained in:
commit
3de24d65cf
@ -191,49 +191,38 @@ public final class AutoIngestControlPanel extends JPanel implements Observer {
|
|||||||
* controlling automated ingest for a single node within the cluster.
|
* controlling automated ingest for a single node within the cluster.
|
||||||
*/
|
*/
|
||||||
private AutoIngestControlPanel() {
|
private AutoIngestControlPanel() {
|
||||||
//DLG: Temporary code for troubleshooting. Remove when done!
|
|
||||||
manager = null;
|
|
||||||
pendingTableModel = null;
|
|
||||||
runningTableModel = null;
|
|
||||||
completedTableModel = null;
|
|
||||||
//////////////////////////////////////////////////////////////
|
|
||||||
try {
|
|
||||||
|
|
||||||
//Disable the main window so they can only use the dashboard (if we used setVisible the taskBar icon would go away)
|
//Disable the main window so they can only use the dashboard (if we used setVisible the taskBar icon would go away)
|
||||||
WindowManager.getDefault().getMainWindow().setEnabled(false);
|
WindowManager.getDefault().getMainWindow().setEnabled(false);
|
||||||
|
|
||||||
manager = AutoIngestManager.getInstance();
|
manager = AutoIngestManager.getInstance();
|
||||||
|
|
||||||
pendingTableModel = new DefaultTableModel(JobsTableModelColumns.headers, 0) {
|
pendingTableModel = new DefaultTableModel(JobsTableModelColumns.headers, 0) {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isCellEditable(int row, int column) {
|
public boolean isCellEditable(int row, int column) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
runningTableModel = new DefaultTableModel(JobsTableModelColumns.headers, 0) {
|
runningTableModel = new DefaultTableModel(JobsTableModelColumns.headers, 0) {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isCellEditable(int row, int column) {
|
public boolean isCellEditable(int row, int column) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
completedTableModel = new DefaultTableModel(JobsTableModelColumns.headers, 0) {
|
completedTableModel = new DefaultTableModel(JobsTableModelColumns.headers, 0) {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isCellEditable(int row, int column) {
|
public boolean isCellEditable(int row, int column) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} catch (Throwable ex) {
|
|
||||||
//DLG: Temporary code for troubleshooting.
|
|
||||||
SYS_LOGGER.log(Level.SEVERE, "AutoIngestControlPanel() error:", ex);
|
|
||||||
}
|
|
||||||
|
|
||||||
initComponents(); // Generated code.
|
initComponents(); // Generated code.
|
||||||
setServicesStatusMessage();
|
setServicesStatusMessage();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user