Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java
index b274d1b0458..91da62a3336 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java
@@ -26,7 +26,6 @@ public interface ITransactionDataAccessor {
*
* @param cache to populate
* @param transaction ids to load
- * @throws OseeCoreException
*/
public void loadTransactionRecord(TransactionCache cache, Collection<Integer> transactionIds) throws OseeCoreException;
@@ -35,7 +34,6 @@ public interface ITransactionDataAccessor {
*
* @param cache to populate
* @param branch to load
- * @throws OseeCoreException
*/
public void loadTransactionRecord(TransactionCache cache, Branch branch) throws OseeCoreException;
@@ -47,7 +45,6 @@ public interface ITransactionDataAccessor {
* @param branch to load
* @param transactionType transaction type to load, can be {@link TransactionVersion#HEAD} or
* {@link TransactionVersion#BASE}
- * @throws OseeCoreException
*/
public TransactionRecord loadTransactionRecord(TransactionCache cache, Branch branch, TransactionVersion transactionType) throws OseeCoreException;

Back to the top