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
EmbeddedMontiArc
Commits
b55ed156
Commit
b55ed156
authored
Jun 20, 2019
by
Mike Grüne
Browse files
Fix MqttConnectionSymbol
parent
462f970c
Pipeline
#151898
passed with stage
in 2 minutes and 12 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/monticore/lang/embeddedmontiarc/tagging/middleware/mqtt/MqttConnectionSymbol.java
View file @
b55ed156
...
...
@@ -40,7 +40,7 @@ public class MqttConnectionSymbol extends MiddlewareSymbol {
}
public
void
setTopicName
(
String
topicName
)
{
this
.
value
.
set
(
0
,
Optional
.
ofNullable
(
topicName
));
this
.
value
s
.
set
(
0
,
Optional
.
ofNullable
(
topicName
));
}
public
Optional
<
String
>
getMsgField
()
{
...
...
src/main/java/de/monticore/lang/embeddedmontiarc/tagging/middleware/mqtt/MqttSymbolCreator.java
View file @
b55ed156
...
...
@@ -96,6 +96,8 @@ public class MqttSymbolCreator implements TagSymbolCreator {
});
});
/**
//Tags with TagValue
tagElements.stream()
.filter(t -> t.getTagValueOpt().isPresent())
...
...
@@ -114,6 +116,7 @@ public class MqttSymbolCreator implements TagSymbolCreator {
p.setMiddlewareSymbol(tmpSymbol);
}
}));
**/
}
}
...
...
Write
Preview
Supports
Markdown
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