mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 07:15:07 +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<>();
|
Set<ItemCheckoutStatus> toTerminate = new HashSet<>();
|
||||||
for (int i = 0; i < rows.length; i++) {
|
for (int i = 0; i < rows.length; i++) {
|
||||||
ItemCheckoutStatus item = tableModel.getRowObject(i);
|
ItemCheckoutStatus item = tableModel.getRowObject(rows[i]);
|
||||||
toTerminate.add(item);
|
toTerminate.add(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user