mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-24 21:50:33 +08:00
GT-2903 corrected terminate checkout from viewed checkouts list. Was
terminating incorrect checkout.
This commit is contained in:
+1
-1
@@ -128,7 +128,7 @@ public class CheckoutsPanel extends JPanel {
|
||||
|
||||
Set<ItemCheckoutStatus> toTerminate = new HashSet<>();
|
||||
for (int i = 0; i < rows.length; i++) {
|
||||
ItemCheckoutStatus item = tableModel.getRowObject(i);
|
||||
ItemCheckoutStatus item = tableModel.getRowObject(rows[i]);
|
||||
toTerminate.add(item);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user