Remove redundant whitespace

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>

See gh-51644
This commit is contained in:
Tran Ngoc Nhan
2026-09-09 10:00:23 +01:00
committed by Andy Wilkinson
parent 3b5706b397
commit fd7a52b954
3 changed files with 3 additions and 3 deletions
@@ -78,7 +78,7 @@ class HazelcastClientConfigAvailableCondition extends HazelcastConfigResourceCon
private static String existingConfigurationOutcome(Resource resource, boolean client) throws IOException {
URL location = resource.getURL();
return client ? "Hazelcast client configuration detected at '" + location + "'"
: "Hazelcast server configuration detected at '" + location + "'";
: "Hazelcast server configuration detected at '" + location + "'";
}
}
@@ -188,7 +188,7 @@ class Saml2RelyingPartyRegistrationConfiguration {
private X509Certificate readCertificate(@Nullable Resource location) {
Assert.state(location != null, "No certificate location specified");
Assert.state(location.exists(), () -> "Certificate location '" + location + "' does not exist");
Assert.state(location.exists(), () -> "Certificate location '" + location + "' does not exist");
try (InputStream inputStream = location.getInputStream()) {
PemContent pemContent = PemContent.load(inputStream);
List<X509Certificate> certificates = pemContent.getCertificates();