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

jiangtian pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/tsfile.git


The following commit(s) were added to refs/heads/develop by this push:
     new 5fcd317a apply spotless
5fcd317a is described below

commit 5fcd317a0a56b55cda3b6a53febd478773665c65
Author: jt2594838 <[email protected]>
AuthorDate: Tue Jul 2 11:30:50 2024 +0800

    apply spotless
---
 .../src/main/java/org/apache/tsfile/encoding/decoder/FloatDecoder.java  | 2 +-
 .../src/main/java/org/apache/tsfile/encoding/encoder/FloatEncoder.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/java/tsfile/src/main/java/org/apache/tsfile/encoding/decoder/FloatDecoder.java
 
b/java/tsfile/src/main/java/org/apache/tsfile/encoding/decoder/FloatDecoder.java
index 5682e5ec..6b019930 100644
--- 
a/java/tsfile/src/main/java/org/apache/tsfile/encoding/decoder/FloatDecoder.java
+++ 
b/java/tsfile/src/main/java/org/apache/tsfile/encoding/decoder/FloatDecoder.java
@@ -80,7 +80,7 @@ public class FloatDecoder extends Decoder {
         logger.debug("tsfile-encoding FloatDecoder: init decoder using 
long-rlbe and double");
       } else {
         throw new TsFileDecodingException(
-                String.format("data type %s is not supported by FloatDecoder", 
dataType));
+            String.format("data type %s is not supported by FloatDecoder", 
dataType));
       }
     } else {
       throw new TsFileDecodingException(
diff --git 
a/java/tsfile/src/main/java/org/apache/tsfile/encoding/encoder/FloatEncoder.java
 
b/java/tsfile/src/main/java/org/apache/tsfile/encoding/encoder/FloatEncoder.java
index 4a79e3e6..adf328e1 100644
--- 
a/java/tsfile/src/main/java/org/apache/tsfile/encoding/encoder/FloatEncoder.java
+++ 
b/java/tsfile/src/main/java/org/apache/tsfile/encoding/encoder/FloatEncoder.java
@@ -79,7 +79,7 @@ public class FloatEncoder extends Encoder {
         encoder = new LongRLBE();
       } else {
         throw new TsFileEncodingException(
-                String.format("data type %s is not supported by FloatEncoder", 
dataType));
+            String.format("data type %s is not supported by FloatEncoder", 
dataType));
       }
     } else {
       throw new TsFileEncodingException(

Reply via email to