Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2010-08-10 17:52:32 +0000
committerddunne2010-08-10 17:52:32 +0000
commit071382211b4aa733d2b891f570732e8944b76f18 (patch)
tree721910be16f16926b6c6b38c094da63914934ecc /plugins/org.eclipse.osee.ats/src
parentf5bfb06841063648e071d57a34711aec6381d49d (diff)
downloadorg.eclipse.osee-071382211b4aa733d2b891f570732e8944b76f18.tar.gz
org.eclipse.osee-071382211b4aa733d2b891f570732e8944b76f18.tar.xz
org.eclipse.osee-071382211b4aa733d2b891f570732e8944b76f18.zip
javadoc cleanup
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ATSArtifact.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ATSArtifact.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ATSArtifact.java
index 86ada3e11cc..684d3605430 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ATSArtifact.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ATSArtifact.java
@@ -27,13 +27,6 @@ import org.eclipse.osee.framework.skynet.core.relation.RelationLink;
public abstract class ATSArtifact extends Artifact implements IHyperArtifact, IATSArtifact {
- /**
- * @param parentFactory
- * @param guid
- * @param humanReadableId
- * @param branch
- * @throws OseeDataStoreException
- */
public ATSArtifact(ArtifactFactory parentFactory, String guid, String humanReadableId, Branch branch, ArtifactType artifactType) throws OseeDataStoreException {
super(parentFactory, guid, humanReadableId, branch, artifactType);
}
@@ -45,10 +38,6 @@ public abstract class ATSArtifact extends Artifact implements IHyperArtifact, IA
/**
* Recursively retrieve artifacts and all its ATS related artifacts such as tasks, notes, subscriptions, etc... for
* deletion
- *
- * @param deleteArts
- * @param allRelated
- * @throws OseeCoreException
*/
public void atsDelete(Set<Artifact> deleteArts, Map<Artifact, Object> allRelated) throws OseeCoreException {
deleteArts.add(this);

Back to the top