Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
compilerconstruction
ssm
Commits
b03d0531
Commit
b03d0531
authored
May 15, 2017
by
Beskhue
Committed by
Mart Lubbers
Dec 05, 2019
Browse files
Place a new line before println messages, to ensure errors and such are placed on their own line.
parent
6d15b6b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/nl/uu/cs/ssmui/CliRunner.java
View file @
b03d0531
...
...
@@ -105,7 +105,7 @@ public class CliRunner implements Messenger {
@Override
public
void
println
(
String
s
)
{
System
.
out
.
println
(
s
);
System
.
out
.
println
(
System
.
lineSeparator
()
+
s
);
}
@Override
...
...
src/nl/uu/cs/ssmui/SSMRunner.java
View file @
b03d0531
...
...
@@ -652,7 +652,7 @@ public class SSMRunner extends JFrame
public
void
println
(
String
s
)
{
outputTextArea
.
append
(
s
+
System
.
lineSeparator
())
;
outputTextArea
.
append
(
System
.
lineSeparator
()
+
s
+
System
.
lineSeparator
())
;
}
public
void
print
(
String
s
)
...
...
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