quick-e2e: fix compile error

This commit is contained in:
Oliver
2025-03-16 21:36:48 +01:00
parent bfb484026a
commit 05e60499b9

View File

@@ -50,7 +50,7 @@ public class PaperDownloadService {
.build();
client.sendAsync(req, HttpResponse.BodyHandlers.ofFile(filePath))
.thenAccept(_ -> System.out.println("Downloaded server file to " + filePath))
.thenAccept(r -> System.out.println("Downloaded server file to " + filePath))
.join();
}