Skip to content

Commit 43b122d

Browse files
review
1 parent 8fc9567 commit 43b122d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/gridsuite/study/server/StudyController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151

5252
import javax.annotation.Nullable;
5353
import java.beans.PropertyEditorSupport;
54-
import java.io.IOException;
5554
import java.nio.charset.StandardCharsets;
5655
import java.util.*;
5756

@@ -633,7 +632,7 @@ public ResponseEntity<Void> runShortCircuit(
633632
@PathVariable("studyUuid") UUID studyUuid,
634633
@PathVariable("nodeUuid") UUID nodeUuid,
635634
@RequestParam(value = "busId", required = false) Optional<String> busId,
636-
@RequestHeader(HEADER_USER_ID) String userId) throws IOException {
635+
@RequestHeader(HEADER_USER_ID) String userId) {
637636
studyService.assertIsNodeNotReadOnly(nodeUuid);
638637
studyService.runShortCircuit(studyUuid, nodeUuid, busId, userId);
639638
return ResponseEntity.ok().build();

0 commit comments

Comments
 (0)