Skip to content

Commit b63c6c7

Browse files
committed
spotless
1 parent 59fb857 commit b63c6c7

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

Lines changed: 1 addition & 3 deletions
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

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

0 commit comments

Comments
 (0)