Skip to content

Commit

Permalink
Partially revert commit 4979b2e (#1719)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Sep 17, 2024
1 parent 679d46f commit 2a1a696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jenkinsci/test/acceptance/utils/IOUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.net.HttpURLConnection;
import java.net.ServerSocket;
import java.net.URL;
import java.util.List;
import java.util.Arrays;
import java.util.logging.Logger;

public class IOUtil {
Expand All @@ -54,7 +54,7 @@ public class IOUtil {
}
}

throw new IOException("None of the paths exist: " + List.of(candidatePaths));
throw new IOException("None of the paths exist: " + Arrays.asList(candidatePaths));
}

/**
Expand Down

0 comments on commit 2a1a696

Please sign in to comment.