Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorytanguy2012-01-25 17:51:08 +0000
committerytanguy2012-01-25 17:51:08 +0000
commitf4f0b8405b104e455a0958aa24288ad065278787 (patch)
treef6d7077a4fd988efe5fbb4cc55287fa50322fdd4 /plugins/sysml/org.eclipse.papyrus.sysml.service.types
parentf5d3eaab0775c2c00f5df0fd8ebfc0c4537e8e65 (diff)
downloadorg.eclipse.papyrus-f4f0b8405b104e455a0958aa24288ad065278787.tar.gz
org.eclipse.papyrus-f4f0b8405b104e455a0958aa24288ad065278787.tar.xz
org.eclipse.papyrus-f4f0b8405b104e455a0958aa24288ad065278787.zip
NEW - bug 369500: [SysML] Update to UML2.4 - Fix models and generators
https://bugs.eclipse.org/bugs/show_bug.cgi?id=369500
Diffstat (limited to 'plugins/sysml/org.eclipse.papyrus.sysml.service.types')
-rw-r--r--plugins/sysml/org.eclipse.papyrus.sysml.service.types/src/org/eclipse/papyrus/sysml/service/types/matcher/FlowPortNAMatcher.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sysml/org.eclipse.papyrus.sysml.service.types/src/org/eclipse/papyrus/sysml/service/types/matcher/FlowPortNAMatcher.java b/plugins/sysml/org.eclipse.papyrus.sysml.service.types/src/org/eclipse/papyrus/sysml/service/types/matcher/FlowPortNAMatcher.java
index 46ecf0ba20a..87f38de218f 100644
--- a/plugins/sysml/org.eclipse.papyrus.sysml.service.types/src/org/eclipse/papyrus/sysml/service/types/matcher/FlowPortNAMatcher.java
+++ b/plugins/sysml/org.eclipse.papyrus.sysml.service.types/src/org/eclipse/papyrus/sysml/service/types/matcher/FlowPortNAMatcher.java
@@ -29,7 +29,7 @@ public class FlowPortNAMatcher implements IElementMatcher {
Port port = (Port)eObject;
FlowPort flowPort = UMLUtil.getStereotypeApplication(port, FlowPort.class);
- if((flowPort != null) && (! flowPort.isIsAtomic())) {
+ if((flowPort != null) && (! flowPort.isAtomic())) {
isFlowPort_NA = true;
}
}

Back to the top