add comment

This commit is contained in:
shaojin.wensj 2023-04-09 15:26:14 +08:00
parent b4490bf78f
commit bd731e9286
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ final class CSVReaderUTF8<T>
this.end = cnt;
if (end > 3) {
// UTF8-BOM EF BB BF
if (buf[0] == -17 && buf[1] == -69 && buf[2] == -65) {
off = 3;
lineNextStart = off;