Revert "Use print + flush instead of println"

This reverts commit b0a859acb5.
This commit is contained in:
Ethan Atkins 2020-06-25 15:16:21 -07:00
parent ba0d97c9ac
commit aaee092c96
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ object Act {
def evaluate(kvs: Seq[ScopedKey[_]]): Parser[() => State] = {
val preparedPairs = anyKeyValues(structure, kvs)
val showConfig = if (action == PrintAction) {
Aggregation.ShowConfig(true, true, s => { print(s + "\n"); System.out.flush() }, false)
Aggregation.ShowConfig(true, true, println, false)
} else {
Aggregation.defaultShow(state, showTasks = action == ShowAction)
}