mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
Close now throws exception, so had to wrap it here
This commit is contained in:
parent
11943c3923
commit
711ed7a388
@ -344,7 +344,11 @@ class SQLiteViewer extends javax.swing.JPanel implements FileTypeViewer {
|
||||
tablesDropdownList.removeAllItems();
|
||||
numEntriesField.setText("");
|
||||
|
||||
viewReader.close();
|
||||
try {
|
||||
viewReader.close();
|
||||
} catch (SQLiteTableReaderException ex) {
|
||||
//Could not successfully close the reader, nothing we can do to recover.
|
||||
}
|
||||
row = new LinkedHashMap<>();
|
||||
pageOfTableRows = new ArrayList<>();
|
||||
currentTableHeader = new ArrayList<>();
|
||||
|
Loading…
x
Reference in New Issue
Block a user