mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-28 09:25:37 +08:00
GP-4075: Fixing an IllegalOutOfBoundsException that occurred in the
Bundle Manager when using JDK 21 (Closes #5956)
This commit is contained in:
+1
-1
@@ -337,7 +337,7 @@ public class BundleStatusTableModel
|
||||
for (GhidraBundle bundle : bundles) {
|
||||
addNewStatusNoFire(bundle);
|
||||
}
|
||||
fireTableRowsInserted(index, bundles.size() - 1);
|
||||
fireTableRowsInserted(index, index + bundles.size() - 1);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user