Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/util/PromptChangeUtil.java')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/util/PromptChangeUtil.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/util/PromptChangeUtil.java b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/util/PromptChangeUtil.java
index 839b63426fc..a8936638191 100644
--- a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/util/PromptChangeUtil.java
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/util/PromptChangeUtil.java
@@ -35,7 +35,7 @@ public class PromptChangeUtil {
BranchType type = ld.getSelection();
for (TreeItem item : branches) {
Branch branch = (Branch) item.getData();
- BranchManager.updateBranchType(null, branch.getId(), branch.getGuid(), type);
+ BranchManager.updateBranchType(null, branch.getId(), type);
}
return true;
}
@@ -49,7 +49,7 @@ public class PromptChangeUtil {
BranchState state = ld.getSelection();
for (TreeItem item : branches) {
Branch branch = (Branch) item.getData();
- BranchManager.updateBranchState(null, branch.getId(), branch.getGuid(), state);
+ BranchManager.updateBranchState(null, branch.getId(), state);
}
return true;
}
@@ -63,7 +63,7 @@ public class PromptChangeUtil {
BranchArchivedState state = ld.getSelection();
for (TreeItem item : branches) {
Branch branch = (Branch) item.getData();
- BranchManager.updateBranchArchivedState(null, branch.getId(), branch.getGuid(), state);
+ BranchManager.updateBranchArchivedState(null, branch.getId(), state);
}
return true;
}

Back to the top