You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/07/22 21:35:34 UTC

[accumulo] branch master updated: fix formatting of Compression.java

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

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new c669b0d  fix formatting of Compression.java
c669b0d is described below

commit c669b0d933358dec97f06a776abcd79a659c8395
Author: Keith Turner <kt...@apache.org>
AuthorDate: Mon Jul 22 17:35:24 2019 -0400

    fix formatting of Compression.java
---
 .../java/org/apache/accumulo/core/file/rfile/bcfile/Compression.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/Compression.java b/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/Compression.java
index 9b0b580..1324b3c 100644
--- a/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/Compression.java
+++ b/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/Compression.java
@@ -606,7 +606,8 @@ public final class Compression {
      */
     CompressionCodec createNewCodec(final String codecClazzProp, final String defaultClazz,
         final int bufferSize, final String bufferSizeConfigOpt) {
-      String extClazz = (conf.get(codecClazzProp) == null ? System.getProperty(codecClazzProp) : null);
+      String extClazz =
+          (conf.get(codecClazzProp) == null ? System.getProperty(codecClazzProp) : null);
       String clazz = (extClazz != null) ? extClazz : defaultClazz;
       try {
         log.info("Trying to load codec class {} for {}", clazz, codecClazzProp);