This is an automated email from the ASF dual-hosted git repository.

fokko 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 a02b551825 Core: Simplify `loadCatalog` method call in Iceberg (#10488)
a02b551825 is described below

commit a02b551825786b0d7b5653800a69e77d1809b2de
Author: GYoung <[email protected]>
AuthorDate: Sat Jun 15 04:04:21 2024 +0800

    Core: Simplify `loadCatalog` method call in Iceberg (#10488)
    
    Co-authored-by: howieyang <[email protected]>
---
 core/src/main/java/org/apache/iceberg/CatalogUtil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/iceberg/CatalogUtil.java 
b/core/src/main/java/org/apache/iceberg/CatalogUtil.java
index 4846dbb8e9..d4fcbda068 100644
--- a/core/src/main/java/org/apache/iceberg/CatalogUtil.java
+++ b/core/src/main/java/org/apache/iceberg/CatalogUtil.java
@@ -307,7 +307,7 @@ public class CatalogUtil {
           catalogImpl);
     }
 
-    return CatalogUtil.loadCatalog(catalogImpl, name, options, conf);
+    return loadCatalog(catalogImpl, name, options, conf);
   }
 
   /**

Reply via email to