This is an automated email from the ASF dual-hosted git repository. yuzelin pushed a commit to branch revert-6538-fix-compile in repository https://gitbox.apache.org/repos/asf/paimon.git
commit 4970f2184f03a0300a83d9b9e3faddd9882e32cc Author: yuzelin <[email protected]> AuthorDate: Thu Nov 6 10:16:17 2025 +0800 Revert "[hotfix] Fix compile problem of StandardLineReader (#6538)" This reverts commit ff180e16c0abc0c1de0bf1f78b12f31bb35f2ff7. --- .../src/main/java/org/apache/paimon/format/text/StandardLineReader.java | 1 + 1 file changed, 1 insertion(+) 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 4b5acb9b1e..2c48c7149b 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,6 +32,7 @@ public class StandardLineReader implements TextLineReader { public StandardLineReader(InputStream inputStream) { this.bufferedReader = new BufferedReader(new InputStreamReader(inputStream, StandardCharsets.UTF_8)); + ; } @Override
