This is an automated email from the ASF dual-hosted git repository.
kevinjqliu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 8e049f02ef Core: Remove redundant string concatenation (#16409)
8e049f02ef is described below
commit 8e049f02ef4d2275024f7eeb3803c3c2fb27cd96
Author: Yuya Ebihara <[email protected]>
AuthorDate: Tue May 19 15:53:31 2026 +0900
Core: Remove redundant string concatenation (#16409)
---
.../test/java/org/apache/iceberg/encryption/KeyStoreKmsClient.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/core/src/test/java/org/apache/iceberg/encryption/KeyStoreKmsClient.java
b/core/src/test/java/org/apache/iceberg/encryption/KeyStoreKmsClient.java
index 5d142708c0..dec7687c5d 100644
--- a/core/src/test/java/org/apache/iceberg/encryption/KeyStoreKmsClient.java
+++ b/core/src/test/java/org/apache/iceberg/encryption/KeyStoreKmsClient.java
@@ -64,11 +64,11 @@ public class KeyStoreKmsClient extends MemoryMockKMS {
public void initialize(Map<String, String> properties) {
String keystorePath = properties.get(KEYSTORE_FILE_PATH_PROP);
Preconditions.checkNotNull(
- keystorePath, KEYSTORE_FILE_PATH_PROP + " must be set in hadoop or
table " + "properties");
+ keystorePath, KEYSTORE_FILE_PATH_PROP + " must be set in hadoop or
table properties");
String keystorePassword = System.getenv(KEYSTORE_PASSWORD_ENV_VAR);
Preconditions.checkNotNull(
- keystorePassword, KEYSTORE_PASSWORD_ENV_VAR + " environment variable "
+ "must be set");
+ keystorePassword, KEYSTORE_PASSWORD_ENV_VAR + " environment variable
must be set");
KeyStore keyStore;
try {