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

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new eebf48831c Make "final" fields in `IcebergCatalog` `final` (#3794)
eebf48831c is described below

commit eebf48831c87c02592607ffeb851a09fdd94fa3d
Author: Robert Stupp <[email protected]>
AuthorDate: Wed Feb 18 18:29:09 2026 +0100

    Make "final" fields in `IcebergCatalog` `final` (#3794)
---
 .../org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
 
b/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
index 0d946b890c..3aa22eada2 100644
--- 
a/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
+++ 
b/runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
@@ -183,11 +183,11 @@ public class IcebergCatalog extends 
BaseMetastoreViewCatalog
   private Map<String, String> tableDefaultProperties;
 
   private final String catalogName;
-  private long catalogId = -1;
+  private final long catalogId;
   private String defaultBaseLocation;
   private Map<String, String> catalogProperties;
   private final StorageAccessConfigProvider storageAccessConfigProvider;
-  private FileIOFactory fileIOFactory;
+  private final FileIOFactory fileIOFactory;
   private PolarisMetaStoreManager metaStoreManager;
 
   /**

Reply via email to