Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
languages
EmbeddedMontiArcDL
Commits
aea5502b
Commit
aea5502b
authored
Jan 08, 2019
by
Alexander David Hellwig
Browse files
Fix: Instances had uppercase names
parent
cb129f13
Pipeline
#95951
failed with stages
in 142 minutes and 8 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
pom.xml
View file @
aea5502b
...
...
@@ -54,6 +54,7 @@
<junit.version>
4.12
</junit.version>
<logback.version>
1.1.2
</logback.version>
<jscience.version>
4.3.1
</jscience.version>
<commons-io.version>
2.6
</commons-io.version>
<!-- .. Plugins ....................................................... -->
<monticore.plugin>
5.0.1
</monticore.plugin>
...
...
@@ -75,6 +76,12 @@
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>
commons-io
</groupId>
<artifactId>
commons-io
</artifactId>
<version>
${commons-io.version}
</version>
</dependency>
<dependency>
<groupId>
org.antlr
</groupId>
...
...
src/main/java/de/monticore/lang/monticar/emadl/_symboltable/ModifiedExpandedInstanceSymbolCreator.java
View file @
aea5502b
...
...
@@ -99,6 +99,6 @@ public class ModifiedExpandedInstanceSymbolCreator extends EMAComponentInstanceS
@Override
public
void
createInstances
(
EMAComponentSymbol
topComponent
,
String
instanceName
)
{
super
.
createInstances
(
topComponent
,
instanceName
);
super
.
createInstances
(
topComponent
,
instanceName
.
substring
(
0
,
1
).
toLowerCase
()
+
instanceName
.
substring
(
1
)
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment