Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2014-06-19 22:18:55 +0000
committerRoberto E. Escobar2014-08-28 23:58:38 +0000
commitd992c4cd9a7fa159fdae7abd551eb47e1b92dfe4 (patch)
treeb5054dc68c2887a9ccdb0075cf8a32149392de33 /plugins/org.eclipse.osee.ats.api
parentc2e834c69fedc0455c0cfe05c5f0eb9d97497810 (diff)
downloadorg.eclipse.osee-d992c4cd9a7fa159fdae7abd551eb47e1b92dfe4.tar.gz
org.eclipse.osee-d992c4cd9a7fa159fdae7abd551eb47e1b92dfe4.tar.xz
org.eclipse.osee-d992c4cd9a7fa159fdae7abd551eb47e1b92dfe4.zip
refinement: Remove un-used method in TeamWorkflowManager
Diffstat (limited to 'plugins/org.eclipse.osee.ats.api')
-rw-r--r--plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/team/ITeamWorkflowProvider.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/team/ITeamWorkflowProvider.java b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/team/ITeamWorkflowProvider.java
index 92fb273bb1d..eb90c8af057 100644
--- a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/team/ITeamWorkflowProvider.java
+++ b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/team/ITeamWorkflowProvider.java
@@ -43,12 +43,6 @@ public interface ITeamWorkflowProvider {
*/
public void teamWorkflowDuplicating(IAtsTeamWorkflow teamWf, IAtsTeamWorkflow dupTeamWf) throws OseeCoreException;
- /**
- * Notification that a teamWorkflow was created. This allows the extension to do necessary initial tasks after the
- * team workflow artifact is created. All changes made to dupTeamArt will be persisted after this call.
- */
- public void teamWorkflowCreated(IAtsTeamWorkflow teamWf);
-
public String getWorkflowDefinitionId(IAtsWorkItem workItem) throws OseeCoreException;
public String getRelatedTaskWorkflowDefinitionId(IAtsTeamWorkflow teamWf) throws OseeCoreException;

Back to the top