Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java')
-rw-r--r--plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java13
1 files changed, 9 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java b/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java
index 8884a15e107..bb88bfa4ec2 100644
--- a/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java
+++ b/plugins/org.eclipse.osee.framework.branch.management/src/org/eclipse/osee/framework/branch/management/exchange/ExchangeDb.java
@@ -44,10 +44,15 @@ public class ExchangeDb {
private static final String[] BRANCH_ID_NEG_ONE_ALIASES = new String[] {"parent_branch_id"};
- private static final String[] BRANCH_ID_REG_ALIASES = new String[] {"mapped_branch_id", "source_branch_id",
- "merge_branch_id", "dest_branch_id"};
-
- private static final String[] ARTIFACT_ID_NEG_ONE_ALIASES = new String[] {"commit_art_id", "associated_art_id",
+ private static final String[] BRANCH_ID_REG_ALIASES = new String[] {
+ "mapped_branch_id",
+ "source_branch_id",
+ "merge_branch_id",
+ "dest_branch_id"};
+
+ private static final String[] ARTIFACT_ID_NEG_ONE_ALIASES = new String[] {
+ "commit_art_id",
+ "associated_art_id",
"author"};
private static final String[] ARTIFACT_ID_REG_ALIASES = new String[] {"a_art_id", "b_art_id", "privilege_entity_id"};

Back to the top