Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2013-11-18 08:58:48 +0000
committerVincent Lorenzo2013-11-18 08:58:48 +0000
commitb153eb2843b34cb6fb8ee92e9a7b8b018321cd4f (patch)
treedc7c1cce5688ef71c1badf369c22deb9c2c24c79 /plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric
parentb75f7380b2840e500fc2564fb09762e7f4b80eec (diff)
downloadorg.eclipse.papyrus-b153eb2843b34cb6fb8ee92e9a7b8b018321cd4f.tar.gz
org.eclipse.papyrus-b153eb2843b34cb6fb8ee92e9a7b8b018321cd4f.tar.xz
org.eclipse.papyrus-b153eb2843b34cb6fb8ee92e9a7b8b018321cd4f.zip
418586: [Connector] [UML] [SysML] [CompositeStructureDiagram] Problems
with UML/SysML Connector https://bugs.eclipse.org/bugs/show_bug.cgi?id=418586 Uncomplete refactoring in the previous commit for this bug
Diffstat (limited to 'plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric')
-rw-r--r--plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric/src/org/eclipse/papyrus/sysml/diagram/parametric/commands/CustomBindingConnectorReorientCommand.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric/src/org/eclipse/papyrus/sysml/diagram/parametric/commands/CustomBindingConnectorReorientCommand.java b/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric/src/org/eclipse/papyrus/sysml/diagram/parametric/commands/CustomBindingConnectorReorientCommand.java
index 006b2c12f15..e723548ea11 100644
--- a/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric/src/org/eclipse/papyrus/sysml/diagram/parametric/commands/CustomBindingConnectorReorientCommand.java
+++ b/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.parametric/src/org/eclipse/papyrus/sysml/diagram/parametric/commands/CustomBindingConnectorReorientCommand.java
@@ -163,13 +163,13 @@ public class CustomBindingConnectorReorientCommand extends ConnectorReorientComm
}
@Override
- protected Property getNewOppositePartWithPort() {
+ protected Property findNewOppositePartWithPort() {
// no Port allowed in Parametric
return null;
}
-
+
@Override
- protected Property getNewPartWithPort() {
+ protected Property findNewPartWithPort() {
// no Port allowed in Parametric
return null;
}

Back to the top