Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-08-31 05:59:51 +0000
committerrbrooks2010-08-31 05:59:51 +0000
commit01d779ec33bdbfae5db3daca4fbceb3bbfb61765 (patch)
tree3fa35634c0d9c280e80046a0d8f54807451d64d7 /plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define
parentec5f685d4b7d45e3cafb9dd4bb81779b123960c3 (diff)
downloadorg.eclipse.osee-01d779ec33bdbfae5db3daca4fbceb3bbfb61765.tar.gz
org.eclipse.osee-01d779ec33bdbfae5db3daca4fbceb3bbfb61765.tar.xz
org.eclipse.osee-01d779ec33bdbfae5db3daca4fbceb3bbfb61765.zip
remove unused Javadoc stubs
Diffstat (limited to 'plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define')
-rw-r--r--plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/artifacts/OteArtifactFetcher.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/artifacts/OteArtifactFetcher.java b/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/artifacts/OteArtifactFetcher.java
index dc05b028ff7..4f39397836d 100644
--- a/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/artifacts/OteArtifactFetcher.java
+++ b/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/artifacts/OteArtifactFetcher.java
@@ -42,8 +42,6 @@ public class OteArtifactFetcher<T extends Artifact> {
/**
* Creates a new Artifact in the specified branch
- *
- * @throws OseeCoreException
*/
@SuppressWarnings("unchecked")
public T getNewArtifact(Branch branch) throws OseeCoreException {
@@ -58,8 +56,6 @@ public class OteArtifactFetcher<T extends Artifact> {
* @param value attribute value to match
* @param branch to search in
* @return the unique artifact
- * @throws MultipleArtifactsExist
- * @throws ArtifactDoesNotExist
*/
@SuppressWarnings("unchecked")
public T searchForUniqueArtifactMatching(IAttributeType attributeType, String attributeValue, Branch branch) throws OseeCoreException {
@@ -74,7 +70,6 @@ public class OteArtifactFetcher<T extends Artifact> {
*
* @param branch to search in
* @return artifact instances
- * @throws OseeArgumentException
*/
@SuppressWarnings("unchecked")
public Set<T> getAllArtifacts(Branch branch) throws OseeArgumentException {
@@ -98,7 +93,6 @@ public class OteArtifactFetcher<T extends Artifact> {
*
* @param branch to search in
* @return artifact instances indexed by descriptive name
- * @throws OseeArgumentException
*/
public Map<String, T> getAllArtifactsIndexedByName(Branch branch) throws OseeArgumentException {
Map<String, T> toReturn = new HashMap<String, T>();

Back to the top