Browse Source
Ignore zoom attribute in pnpro files
tempestpy_adaptions
Matthias Volk
4 years ago
No known key found for this signature in database
GPG Key ID: 83A57678F739FCD3
1 changed files with
2 additions and
1 deletions
-
src/storm-gspn/parser/GreatSpnEditorProjectParser.cpp
|
|
@ -88,7 +88,8 @@ namespace storm { |
|
|
|
if (name.compare("name") == 0) { |
|
|
|
builder.setGspnName(storm::adapters::XMLtoString(attr->getNodeValue())); |
|
|
|
} else if (name.compare("show-color-cmd") == 0 || |
|
|
|
name.compare("show-fluid-cmd") == 0) { |
|
|
|
name.compare("show-fluid-cmd") == 0 || |
|
|
|
name.compare("zoom") == 0) { |
|
|
|
// ignore node
|
|
|
|
} else { |
|
|
|
// Found node or attribute which is at the moment not handled by this parser.
|
|
|
|