Skip to content

Commit 227c88a

Browse files
committed
fix
1 parent f4031f1 commit 227c88a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/socket/client/Connection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private Process startServerProcess(String script, int port) throws IOException {
5454
return Runtime.getRuntime().exec(String.format(script, nsp()), createEnv(port));
5555
}
5656

57-
private Future<?> startServerOutput(Process process, String serverName, CountDownLatch latch) {
57+
private Future<?> startServerOutput(final Process process, String serverName, CountDownLatch latch) {
5858
return serverService.submit(new Runnable() {
5959
@Override
6060
public void run() {
@@ -74,7 +74,7 @@ public void run() {
7474
});
7575
}
7676

77-
private Future<?> startServerError(Process process, String serverName) {
77+
private Future<?> startServerError(final Process process, String serverName) {
7878
return serverService.submit(new Runnable() {
7979
@Override
8080
public void run() {

0 commit comments

Comments
 (0)