Skip to content

Commit a1d7f1c

Browse files
committed
spotless
1 parent 1898dfa commit a1d7f1c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

JShellAPI/src/main/java/org/togetherjava/jshellapi/rest/JShellController.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import io.swagger.v3.oas.annotations.Operation;
44
import io.swagger.v3.oas.annotations.Parameter;
55
import io.swagger.v3.oas.annotations.media.Content;
6-
import io.swagger.v3.oas.annotations.media.ExampleObject;
76
import io.swagger.v3.oas.annotations.media.Schema;
87
import io.swagger.v3.oas.annotations.responses.ApiResponse;
98

@@ -52,8 +51,7 @@ public JShellResult eval(
5251
@Parameter(description = "id of the startup script to use")
5352
@RequestParam(required = false)
5453
StartupScriptId startupScriptId,
55-
@RequestBody
56-
String code)
54+
@RequestBody String code)
5755
throws DockerException {
5856
return service.session(id, startupScriptId)
5957
.eval(code)

0 commit comments

Comments
 (0)