We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668ceae commit 8605a4bCopy full SHA for 8605a4b
JShellAPI/src/main/java/org/togetherjava/jshellapi/dto/JShellResult.java
@@ -1,13 +1,17 @@
1
package org.togetherjava.jshellapi.dto;
2
3
+import org.springframework.lang.Nullable;
4
+
5
import java.util.List;
6
7
public record JShellResult(
8
SnippetStatus status,
9
SnippetType type,
10
int id,
11
String source,
12
+ @Nullable
13
String result,
14
15
JShellExceptionResult exception,
16
boolean stdoutOverflow,
17
String stdout,
0 commit comments