Skip to content
Snippets Groups Projects
Commit 149f44f8 authored by Simon Barner's avatar Simon Barner
Browse files

- Fix calculation of return value of removeModelElementReferenceSpecifications()

refs 2240
parent 4d7c91a2
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ import org.fortiss.tooling.base.model.element.IModelElementSpecification;
* @author hoelzl
* @author $Author: hoelzl $
* @version $Rev: 18709 $
* @ConQAT.Rating YELLOW Hash: 7965F91B651358DF88F4429359C5EB59
* @ConQAT.Rating YELLOW Hash: 0E38362FF1F2DCAC50C577D6B17AB70B
*/
public class BaseModelElementUtils {
......@@ -92,7 +92,7 @@ public class BaseModelElementUtils {
findModelElementReferenceSpecifications((modelElement).getSpecifications());
boolean modelElementReferenceSpecificationsRemoved =
!modelElement.getSpecifications().isEmpty();
!modelElementReferenceSpecifications.isEmpty();
modelElement.getSpecifications().removeAll(modelElementReferenceSpecifications);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment