Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn F. Cook2011-08-08 20:41:21 +0000
committerRyan D. Brooks2011-08-08 20:41:21 +0000
commit0276a25446344462b279c122f44d4e020cb61780 (patch)
tree516043a39b1bdd4b0c4249eb2317c8f55e38e9ec /plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java
parentf5b92c1a4b7e2b15175187dbc8f98a4dc10c7124 (diff)
downloadorg.eclipse.osee-0276a25446344462b279c122f44d4e020cb61780.tar.gz
org.eclipse.osee-0276a25446344462b279c122f44d4e020cb61780.tar.xz
org.eclipse.osee-0276a25446344462b279c122f44d4e020cb61780.zip
refactor[bgz_354193]: Remove unused exception declarations
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java
index 4aa3a6ab9dc..698198014b3 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/TransactionCache.java
@@ -129,7 +129,7 @@ public class TransactionCache implements IOseeCache<TransactionRecord> {
}
@Override
- public Collection<TransactionRecord> getAllDirty() throws OseeCoreException {
+ public Collection<TransactionRecord> getAllDirty() {
Set<TransactionRecord> dirtys = new HashSet<TransactionRecord>();
for (TransactionRecord record : transactionIdCache.values()) {
if (record.isDirty()) {
@@ -140,15 +140,15 @@ public class TransactionCache implements IOseeCache<TransactionRecord> {
}
@Override
- public void storeAllModified() throws OseeCoreException {
+ public void storeAllModified() {
}
@Override
- public void storeItems(TransactionRecord... items) throws OseeCoreException {
+ public void storeItems(TransactionRecord... items) {
}
@Override
- public void storeItems(Collection<TransactionRecord> toStore) throws OseeCoreException {
+ public void storeItems(Collection<TransactionRecord> toStore) {
}
public TransactionRecord getPriorTransaction(TransactionRecord transactionId) throws OseeCoreException {
@@ -166,7 +166,7 @@ public class TransactionCache implements IOseeCache<TransactionRecord> {
return toReturn;
}
- public Collection<TransactionRecord> getTransactions(Branch branch) throws OseeCoreException {
+ public Collection<TransactionRecord> getTransactions(Branch branch) {
return Collections.emptyList();
}

Back to the top