Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ESProjects
SDE
Commits
c085995f
Commit
c085995f
authored
Jan 18, 2022
by
Pietro Braghieri
Browse files
fix to formatter when time annotation is missing
parent
1361e3f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
eu.fbk.tools.editor/eu.fbk.tools.editor.nusmv/src/eu/fbk/tools/editor/nusmv/formatting2/NuSMVFormatter.xtend
View file @
c085995f
...
...
@@ -29,7 +29,7 @@ class NuSMVFormatter extends AbstractFormatter2 {
for
(
module
:
model
.
getModules
())
{
if
(
model
.
annotation
.
value
!== null ) // trick because call to model.annotation.format seems not working
if
(
model
.
annotation
!== null &&
model.annotation.value !== null ) // trick because call to model.annotation.format seems not working
{
module
.
surround
[
newLine
].
format
}
...
...
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