Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeremie.tatibouet2015-07-23 12:40:00 +0000
committerJeremie Tatibouet2016-03-21 08:42:09 +0000
commit58df78458a9b40b75f165400e24da7565efb4e8c (patch)
tree6116ed39ea8b044e4a527c9f3dc6ebbfb231370f /extraplugins
parentbface7f4e16d4f0de9e994f726641fa306ee1a04 (diff)
downloadorg.eclipse.papyrus-58df78458a9b40b75f165400e24da7565efb4e8c.tar.gz
org.eclipse.papyrus-58df78458a9b40b75f165400e24da7565efb4e8c.tar.xz
org.eclipse.papyrus-58df78458a9b40b75f165400e24da7565efb4e8c.zip
Should solve the problem related to auto-save of textual representation
failing on "Action language profile is not applied". The associated bug is https://bugs.eclipse.org/bugs/show_bug.cgi?id=473391. The fixes integrates a bunch of unit tests. Conflicts: extraplugins/alf/ui/org.eclipse.papyrus.uml.alf.properties.xtext/META-INF/MANIFEST.MF releng/main-tests/pom.xml Change-Id: I8065b952fafd85a97fdeb88cd5d37c25b3cfcb04 Signed-off-by: jeremie.tatibouet <jeremie.tatibouet@cea.fr>
Diffstat (limited to 'extraplugins')
-rw-r--r--extraplugins/alf/core/org.eclipse.papyrus.uml.alf.text/src/org/eclipse/papyrus/uml/alf/text/representation/util/RepresentationParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/extraplugins/alf/core/org.eclipse.papyrus.uml.alf.text/src/org/eclipse/papyrus/uml/alf/text/representation/util/RepresentationParser.java b/extraplugins/alf/core/org.eclipse.papyrus.uml.alf.text/src/org/eclipse/papyrus/uml/alf/text/representation/util/RepresentationParser.java
index 5aab9dfecd9..b6496533214 100644
--- a/extraplugins/alf/core/org.eclipse.papyrus.uml.alf.text/src/org/eclipse/papyrus/uml/alf/text/representation/util/RepresentationParser.java
+++ b/extraplugins/alf/core/org.eclipse.papyrus.uml.alf.text/src/org/eclipse/papyrus/uml/alf/text/representation/util/RepresentationParser.java
@@ -64,7 +64,7 @@ public class RepresentationParser {
representation.setSource(comment);
representation.setText(comment.getBody());
if (helperBackup.isBackup(comment)) {
- Stereotype backup = helperBackup.getBackuStereotype(modelElement);
+ Stereotype backup = helperBackup.getBackupStereotype(modelElement);
if (backup != null) {
representation.setEditionState(helperBackup.getBackupState(comment));
}

Back to the top