Merge remote-tracking branch

'origin/GP-4524_ghidra1_DisassociateTransaction' into patch
(Closes #6424)
This commit is contained in:
Ryan Kurtz 2024-04-15 11:18:03 -04:00
commit bf01521402

View File

@ -156,7 +156,7 @@ public class DisassociateAction extends DockingAction {
List<DataTypeSyncInfo> typesToDisassociate, List<DataTypeSyncInfo> allAssociatedTypes,
TaskMonitor monitor) throws CancelledException {
synchronizer.openTransactions();
int txId = dtm.startTransaction("Disassociate from Archive");
try {
monitor.initialize(typesToDisassociate.size());
@ -172,7 +172,7 @@ public class DisassociateAction extends DockingAction {
}
finally {
synchronizer.closeTransactions();
dtm.endTransaction(txId, true);
}
}