Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2016-06-07 01:16:05 +0000
committerRyan T. Baldwin2016-06-07 01:16:05 +0000
commit0e06a6ace2e3ccaa82e303da3da3fafdd81ca5fc (patch)
tree85942302dfebe7af6294fb7989de30c2379bff6a /plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java
parenta4e16a784595921b853add14e7893f50bcaf9df3 (diff)
downloadorg.eclipse.osee-0e06a6ace2e3ccaa82e303da3da3fafdd81ca5fc.tar.gz
org.eclipse.osee-0e06a6ace2e3ccaa82e303da3da3fafdd81ca5fc.tar.xz
org.eclipse.osee-0e06a6ace2e3ccaa82e303da3da3fafdd81ca5fc.zip
refactor: Remove redundant PurgeUnusedBackingDataAndTransactions
Diffstat (limited to 'plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java')
-rw-r--r--plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java b/plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java
index 1157cde7ebc..5797fc24a66 100644
--- a/plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java
+++ b/plugins/org.eclipse.osee.orcs/src/org/eclipse/osee/orcs/transaction/TransactionFactory.java
@@ -30,6 +30,8 @@ public interface TransactionFactory {
Callable<Integer> purgeTransaction(Collection<? extends TransactionId> transactions);
+ int[] purgeUnusedBackingDataAndTransactions();
+
Callable<Void> setTransactionComment(TransactionId transaction, String comment);
CompareResults compareTxs(int txId1, int txId2);

Back to the top