You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2019/11/06 18:37:04 UTC

[incubator-iceberg] branch master updated: Fix ImmutableEnumChecker (#609)

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

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new c6633d2  Fix ImmutableEnumChecker (#609)
c6633d2 is described below

commit c6633d24fa3822f5b3451ed8d16a3f789991c608
Author: Fokko Driesprong <fo...@apache.org>
AuthorDate: Wed Nov 6 19:36:55 2019 +0100

    Fix ImmutableEnumChecker (#609)
---
 core/src/main/java/org/apache/iceberg/avro/Avro.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/iceberg/avro/Avro.java b/core/src/main/java/org/apache/iceberg/avro/Avro.java
index 760b805..b8ea3d8 100644
--- a/core/src/main/java/org/apache/iceberg/avro/Avro.java
+++ b/core/src/main/java/org/apache/iceberg/avro/Avro.java
@@ -55,7 +55,7 @@ public class Avro {
     BROTLI(null),
     ZSTD(null);
 
-    private CodecFactory avroCodec;
+    private final CodecFactory avroCodec;
 
     CodecName(CodecFactory avroCodec) {
       this.avroCodec = avroCodec;