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
CNNArchLang
Commits
c23000c3
Commit
c23000c3
authored
Jun 21, 2019
by
Sebastian Nickels
Browse files
Removed unnecessary methods
parent
af6046b5
Pipeline
#152005
passed with stages
in 18 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/monticore/lang/monticar/cnnarch/_symboltable/ArchitectureSymbol.java
View file @
c23000c3
...
...
@@ -52,26 +52,6 @@ public class ArchitectureSymbol extends CommonScopeSpanningSymbol {
return
streams
;
}
public
List
<
SerialCompositeElementSymbol
>
getNetworkStreams
()
{
List
<
SerialCompositeElementSymbol
>
networkStreams
=
new
ArrayList
<>();
for
(
SerialCompositeElementSymbol
stream
:
streams
)
{
if
(
stream
.
isNetwork
())
{
networkStreams
.
add
(
stream
);
}
}
return
networkStreams
;
}
public
List
<
SerialCompositeElementSymbol
>
getNonNetworkStreams
()
{
List
<
SerialCompositeElementSymbol
>
nonNetworkStreams
=
new
ArrayList
<>();
for
(
SerialCompositeElementSymbol
stream
:
streams
)
{
if
(!
stream
.
isNetwork
())
{
nonNetworkStreams
.
add
(
stream
);
}
}
return
nonNetworkStreams
;
}
public
void
setStreams
(
List
<
SerialCompositeElementSymbol
>
streams
)
{
this
.
streams
=
streams
;
}
...
...
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