File tree Expand file tree Collapse file tree 3 files changed +2
-20
lines changed
main/kotlin/com/compiler/server
test/kotlin/com/compiler/server Expand file tree Collapse file tree 3 files changed +2
-20
lines changed Original file line number Diff line number Diff line change 1
1
package com.compiler.server.executor
2
2
3
3
import com.compiler.server.model.ProgramOutput
4
- import com.compiler.server.utils.escapeString
5
4
import org.springframework.stereotype.Component
6
5
import java.io.BufferedReader
7
6
import java.io.IOException
@@ -85,7 +84,7 @@ class JavaExecutor {
85
84
try {
86
85
while (output.length < limit) {
87
86
val line = standardOut.readLine() ? : break
88
- output.appendLine(escapeString( line) )
87
+ output.appendLine(line)
89
88
}
90
89
} catch (_: Exception ) {
91
90
// something happened with the stream. Just return what we've collected so far
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class KotlinFeatureSince160 : BaseExecutorTest() {
52
52
//sampleEnd
53
53
}
54
54
""" .trimIndent(),
55
- contains = " <outStream>brown& blue\n </outStream>"
55
+ contains = " <outStream>brown&blue\n </outStream>"
56
56
)
57
57
}
58
58
You can’t perform that action at this time.
0 commit comments