Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2010-11-04 00:17:50 +0000
committerRyan D. Brooks2010-11-04 00:17:50 +0000
commit1104ddf269a5b21afbe2f83ac4ea3d93704048ef (patch)
tree23ffe61429572ad4f52e56f638fbe7bd2e5e75f1 /plugins/org.eclipse.osee.framework.skynet.core.test
parentc9c99478ab3c99cd79c9be3599dc2ebcee07c082 (diff)
downloadorg.eclipse.osee-1104ddf269a5b21afbe2f83ac4ea3d93704048ef.tar.gz
org.eclipse.osee-1104ddf269a5b21afbe2f83ac4ea3d93704048ef.tar.xz
org.eclipse.osee-1104ddf269a5b21afbe2f83ac4ea3d93704048ef.zip
refactor: Remove unnecessary exceptions
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core.test')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationCacheTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationCacheTest.java b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationCacheTest.java
index 56703c2102d..bd8aa352e17 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationCacheTest.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationCacheTest.java
@@ -349,7 +349,7 @@ public class RelationCacheTest {
}
}
- private static IArtifact createArtifact(int id, Branch branch) throws OseeCoreException {
+ private static IArtifact createArtifact(int id, Branch branch) {
return DataFactory.createArtifact(id, "Art-" + id, GUID.create(), branch);
}

Back to the top