Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/access/exp/IAcceptFilter.java1
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/AbstractOseeCache.java1
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/ITransactionDataAccessor.java3
3 files changed, 0 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/access/exp/IAcceptFilter.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/access/exp/IAcceptFilter.java
index b7285735256..0e0cfe202fc 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/access/exp/IAcceptFilter.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/access/exp/IAcceptFilter.java
@@ -16,7 +16,6 @@ import org.eclipse.osee.framework.core.model.IBasicArtifact;
/**
* @author Jeff C. Phillips
* @author Roberto E. Escobar
- * @param <T>
*/
public interface IAcceptFilter<T> {
boolean accept(T item, IBasicArtifact<?> artifact, PermissionEnum permission);
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/AbstractOseeCache.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/AbstractOseeCache.java
index 5645df34617..3192ff7abfd 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/AbstractOseeCache.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/AbstractOseeCache.java
@@ -110,7 +110,6 @@ public abstract class AbstractOseeCache<T extends AbstractOseeType> implements I
* the views because it is not a copy. This method exists to improve performance for subclasses
*
* @return
- * @throws OseeCoreException
*/
protected synchronized Collection<T> getRawValues() throws OseeCoreException {
ensurePopulated();
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