From 45338e5e425c33f0b98cd7d2aa2e5a9e37c5e7e7 Mon Sep 17 00:00:00 2001 From: Eric Haag Date: Tue, 11 Apr 2023 14:44:20 -0500 Subject: [PATCH] Add missing space --- .../gradle/enterprise/api/client/FailedRequestException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/fetch-build-scan-data-cmdline-tool/src/main/java/com/gradle/enterprise/api/client/FailedRequestException.java b/components/fetch-build-scan-data-cmdline-tool/src/main/java/com/gradle/enterprise/api/client/FailedRequestException.java index d582c018..dc1d1063 100644 --- a/components/fetch-build-scan-data-cmdline-tool/src/main/java/com/gradle/enterprise/api/client/FailedRequestException.java +++ b/components/fetch-build-scan-data-cmdline-tool/src/main/java/com/gradle/enterprise/api/client/FailedRequestException.java @@ -26,7 +26,7 @@ public Optional getResponseBody() { private static String buildMessage(URL buildScanUrl, int code) { switch (code) { case 404: - return String.format("Build scan %s was not found.%nVerify the build scan exists and you have been" + + return String.format("Build scan %s was not found.%nVerify the build scan exists and you have been " + "granted the permission 'Access build data via the Export API'.", buildScanUrl); case 401: return String.format("Failed to authenticate while attempting to fetch build scan %s.", buildScanUrl);