Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/widgets/SMAState.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/widgets/SMAState.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/widgets/SMAState.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/widgets/SMAState.java
index 44239defc51..8dd8875ac3e 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/widgets/SMAState.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/widgets/SMAState.java
@@ -87,8 +87,6 @@ public class SMAState {
/**
* Sets the assignees but DOES NOT write to SMA. This method should NOT be called outside the StateMachineArtifact.
- *
- * @throws OseeCoreException
*/
public void setAssignees(Collection<User> assignees) throws OseeCoreException {
if (assignees != null) {
@@ -115,9 +113,6 @@ public class SMAState {
/**
* Sets the assignees but DOES NOT write to SMA. This method should NOT be called outside the StateMachineArtifact.
- *
- * @throws OseeCoreException
- * @throws IllegalOseeArgumentException
*/
public void setAssignee(User assignee) throws OseeCoreException {
if (assignee != null && (name.equals(DefaultTeamState.Completed.name()) || name.equals(DefaultTeamState.Cancelled.name()))) {

Back to the top