Skip to content

Commit

Permalink
do not add line breaks to transcript
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Sep 27, 2024
1 parent 17761d8 commit b1c5ea8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2725,7 +2725,7 @@ protected void done() {
StringBuilder resultString = new StringBuilder();
for (OutputData o : status.getResponse().getOutputData()) {
if (o.getType().equalsIgnoreCase(OutputData.TYPE_STRING)) {
resultString.append(o.getStringData()).append(System.lineSeparator()).append(System.lineSeparator());
resultString.append(o.getStringData());
}

}
Expand Down

0 comments on commit b1c5ea8

Please sign in to comment.