Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2015-12-01 21:14:58 +0000
committerAngel Avila2015-12-01 21:14:58 +0000
commit8f0ac84399d93cf72200ce2a385b16c491023ab9 (patch)
treeaf4b7595098cfdc8f5482a108fe46b4697e8e9bf /plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse
parent8f751897631cabd6a015edc9c5bf728dd7983aea (diff)
downloadorg.eclipse.osee-8f0ac84399d93cf72200ce2a385b16c491023ab9.tar.gz
org.eclipse.osee-8f0ac84399d93cf72200ce2a385b16c491023ab9.tar.xz
org.eclipse.osee-8f0ac84399d93cf72200ce2a385b16c491023ab9.zip
refactor: Remove unnecessary usage of BranchManager.getBranch
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 0dd2c6a61aa..ce770526fb0 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
@@ -219,7 +219,7 @@ public class OutfileImportPage extends WizardDataTransferPage {
if (settings != null) {
String lastSelected = settings.get(TestRunStorageKey.SELECTED_BRANCH_ID);
try {
- branchSelect.setSelection(BranchManager.getBranch(Long.parseLong(lastSelected)));
+ branchSelect.setSelection(BranchManager.getBranchToken(Long.parseLong(lastSelected)));
} catch (Exception ex) {
OseeLog.log(OteUiDefinePlugin.class, Level.SEVERE, ex);
}

Back to the top