mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-07-30 07:18:37 -09:00
Merge branch 'GP-0_ryanmkurtz_PR-9411_64kramsystem_fix-bundlebuilt-npe'
This commit is contained in:
@@ -300,9 +300,11 @@ public class BundleStatusTableModel
|
|||||||
if (summary != null) {
|
if (summary != null) {
|
||||||
Swing.runLater(() -> {
|
Swing.runLater(() -> {
|
||||||
BundleStatus status = getStatus(bundle);
|
BundleStatus status = getStatus(bundle);
|
||||||
status.setSummary(summary);
|
if (status != null) {
|
||||||
int rowIndex = getRowIndex(status);
|
status.setSummary(summary);
|
||||||
fireTableRowsUpdated(rowIndex, rowIndex);
|
int rowIndex = getRowIndex(status);
|
||||||
|
fireTableRowsUpdated(rowIndex, rowIndex);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user