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:34:29 UTC

[incubator-iceberg] branch master updated: Fix InconsistentCapitalization error (#614)

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 0e3ec38  Fix InconsistentCapitalization error (#614)
0e3ec38 is described below

commit 0e3ec38369287f24855dd151b42feac6ac563a1d
Author: Fokko Driesprong <fo...@apache.org>
AuthorDate: Wed Nov 6 19:34:20 2019 +0100

    Fix InconsistentCapitalization error (#614)
---
 .../java/org/apache/iceberg/hadoop/SerializableConfiguration.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/src/main/java/org/apache/iceberg/hadoop/SerializableConfiguration.java b/core/src/main/java/org/apache/iceberg/hadoop/SerializableConfiguration.java
index 37b9601..34baf1c 100644
--- a/core/src/main/java/org/apache/iceberg/hadoop/SerializableConfiguration.java
+++ b/core/src/main/java/org/apache/iceberg/hadoop/SerializableConfiguration.java
@@ -32,8 +32,8 @@ public class SerializableConfiguration implements Serializable {
 
   private transient Configuration hadoopConf;
 
-  public SerializableConfiguration(Configuration hadoopCOnf) {
-    this.hadoopConf = hadoopCOnf;
+  public SerializableConfiguration(Configuration hadoopConf) {
+    this.hadoopConf = hadoopConf;
   }
 
   private void writeObject(ObjectOutputStream out) throws IOException {