Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2014-04-11 22:44:22 +0000
committerDonald Dunne2014-04-17 16:20:10 +0000
commit9f6759edb147ef0d5ae307917f755a26f7e107e0 (patch)
treed8e9cd9c896bbb836a9a4f79e2d7645194878dc3 /plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse
parent6a79d57bdb3508f58b038aec78abb6cda343c9bb (diff)
downloadorg.eclipse.osee-9f6759edb147ef0d5ae307917f755a26f7e107e0.tar.gz
org.eclipse.osee-9f6759edb147ef0d5ae307917f755a26f7e107e0.tar.xz
org.eclipse.osee-9f6759edb147ef0d5ae307917f755a26f7e107e0.zip
feature[ats_ATS19845]: Remove BranchManager.getBranchId
Diffstat (limited to 'plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse')
-rw-r--r--plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java b/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java
index 504589ea3eb..bfa6ce8bcf1 100644
--- a/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java
+++ b/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java
@@ -306,7 +306,7 @@ public class OutfileImportPage extends WizardDataTransferPage {
IOseeBranch branch = branchSelect.getData();
try {
if (branch != null && BranchManager.getBranch(branch).hasParentBranch()) {
- String lastBranchSelected = Long.toString(BranchManager.getBranchId(branch));
+ String lastBranchSelected = Long.toString(branch.getUuid());
branchIds = addToHistory(branchIds, lastBranchSelected);
settings.put(TestRunStorageKey.BRANCH_IDS, branchIds);

Back to the top