Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan E. Cook2017-07-18 23:48:06 +0000
committerMorgan Cook2017-07-19 19:49:46 +0000
commit6caca4d198b3744882f74c4df87fc9a5cc1c8902 (patch)
treeb5efcee20992f0f75b754c5a6a06c30d6c1085a0 /plugins
parent3cea9222da29a2d078f8f905103e1efa2d106fda (diff)
downloadorg.eclipse.osee-6caca4d198b3744882f74c4df87fc9a5cc1c8902.tar.gz
org.eclipse.osee-6caca4d198b3744882f74c4df87fc9a5cc1c8902.tar.xz
org.eclipse.osee-6caca4d198b3744882f74c4df87fc9a5cc1c8902.zip
bug: Fix feature definition applicability call
Signed-off-by: Morgan E. Cook <morgan.e.cook@boeing.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/search/ApplicabilityQueryImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/search/ApplicabilityQueryImpl.java b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/search/ApplicabilityQueryImpl.java
index 61eb9438b24..f18cdd86426 100644
--- a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/search/ApplicabilityQueryImpl.java
+++ b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/search/ApplicabilityQueryImpl.java
@@ -112,7 +112,7 @@ public class ApplicabilityQueryImpl implements ApplicabilityQuery {
List<ApplicabilityToken> result = getViewApplicabilityTokens(viewId, branch);
for (ApplicabilityToken app : result) {
- if (!app.getName().equalsIgnoreCase("Base")) {
+ if (!app.getName().equalsIgnoreCase("Base") && !app.getName().contains("|") && !app.getName().contains("&")) {
String[] values = app.getName().split("=");
// This will not return Excluded Configurations

Back to the top