garydgregory commented on code in PR #502:
URL: https://github.com/apache/commons-csv/pull/502#discussion_r1850556663
##########
src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java:
##########
@@ -49,13 +53,27 @@ final class ExtendedBufferedReader extends
UnsynchronizedBufferedReader {
private long position;
private long positionMark;
+ /** The number of bytes read so far */
+ private long bytesRead;
+ private long bytesReadMark;
+
+ /** Encoder used to calculate the bytes of characters */
+ CharsetEncoder encoder;
+
/**
* Constructs a new instance using the default buffer size.
*/
ExtendedBufferedReader(final Reader reader) {
super(reader);
}
+ ExtendedBufferedReader(final Reader reader, String encoding) {
Review Comment:
Not resolved.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]