|
1 | 1 | /******************************************************************************* |
2 | 2 | * SysML 2 Pilot Implementation |
3 | | - * Copyright (c) 2021, 2022 Model Driven Solutions, Inc. |
| 3 | + * Copyright (c) 2021, 2022, 2026 Model Driven Solutions, Inc. |
4 | 4 | * |
5 | 5 | * This program is free software: you can redistribute it and/or modify |
6 | 6 | * it under the terms of the GNU Lesser General Public License as published by |
@@ -63,19 +63,11 @@ protected boolean isInFilterExpression() { |
63 | 63 | * @satisfies checkFeatureReferenceExpressionBindingConnector |
64 | 64 | */ |
65 | 65 | protected void addReferenceConnector() { |
66 | | - /* |
67 | | - * TODO: Update checkFeatureReferenceExpressionBindingConnector? |
68 | | - * |
69 | | - * OCL does not include !isInFilterExpression check. |
70 | | - * |
71 | | - */ |
72 | | - if (!isInFilterExpression()) { |
73 | | - FeatureReferenceExpression target = getTarget(); |
74 | | - Feature referent = target.getReferent(); |
75 | | - Feature result = target.getResult(); |
76 | | - if (referent != null && result != null) { |
77 | | - addBindingConnector(referent, result); |
78 | | - } |
| 66 | + FeatureReferenceExpression target = getTarget(); |
| 67 | + Feature referent = target.getReferent(); |
| 68 | + Feature result = target.getResult(); |
| 69 | + if (referent != null && result != null) { |
| 70 | + addBindingConnector(referent, result); |
79 | 71 | } |
80 | 72 | } |
81 | 73 |
|
|
0 commit comments