Skip to content

Commit 05e6049

Browse files
quick-e2e: fix compile error
1 parent bfb4840 commit 05e6049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/quick-e2e/src/main/java/de/oliver/quicke2e/steps/paper/PaperDownloadService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void downloadServerFile(Context context) {
5050
.build();
5151

5252
client.sendAsync(req, HttpResponse.BodyHandlers.ofFile(filePath))
53-
.thenAccept(_ -> System.out.println("Downloaded server file to " + filePath))
53+
.thenAccept(r -> System.out.println("Downloaded server file to " + filePath))
5454
.join();
5555
}
5656

0 commit comments

Comments
 (0)