Skip to content

Commit 993180b

Browse files
authored
JS-752 Fix stale "throws InterrruptedException" (#5439)
1 parent d5e8698 commit 993180b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sonar-plugin/standalone/src/main/java/org/sonar/plugins/javascript/standalone/StandaloneParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ public class StandaloneParser implements AutoCloseable {
4545

4646
private final BridgeServerImpl bridge;
4747

48-
public StandaloneParser() throws InterruptedException {
48+
public StandaloneParser() {
4949
this(Http.getJdkHttpClient());
5050
}
5151

52-
public StandaloneParser(Http http) throws InterruptedException {
52+
public StandaloneParser(Http http) {
5353
ProcessWrapperImpl processWrapper = new ProcessWrapperImpl();
5454
EmptyConfiguration emptyConfiguration = new EmptyConfiguration();
5555
var temporaryFolder = new StandaloneTemporaryFolder();

0 commit comments

Comments
 (0)