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

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


The following commit(s) were added to refs/heads/master by this push:
     new ff180e16c0 [hotfix] Fix compile problem of StandardLineReader (#6538)
ff180e16c0 is described below

commit ff180e16c0abc0c1de0bf1f78b12f31bb35f2ff7
Author: yuzelin <[email protected]>
AuthorDate: Thu Nov 6 10:15:51 2025 +0800

    [hotfix] Fix compile problem of StandardLineReader (#6538)
    
    Co-authored-by: yuzelin <[email protected]>
---
 .../src/main/java/org/apache/paimon/format/text/StandardLineReader.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/paimon-format/src/main/java/org/apache/paimon/format/text/StandardLineReader.java
 
b/paimon-format/src/main/java/org/apache/paimon/format/text/StandardLineReader.java
index 2c48c7149b..4b5acb9b1e 100644
--- 
a/paimon-format/src/main/java/org/apache/paimon/format/text/StandardLineReader.java
+++ 
b/paimon-format/src/main/java/org/apache/paimon/format/text/StandardLineReader.java
@@ -32,7 +32,6 @@ public class StandardLineReader implements TextLineReader {
     public StandardLineReader(InputStream inputStream) {
         this.bufferedReader =
                 new BufferedReader(new InputStreamReader(inputStream, 
StandardCharsets.UTF_8));
-        ;
     }
 
     @Override

Reply via email to