fixing checkstyle issue

This commit is contained in:
gbidsilva 2023-09-11 18:32:35 +05:30
parent 05322761db
commit c0759cd95c

View File

@ -367,7 +367,8 @@ final class Lexer implements Closeable {
}
if (!Character.isWhitespace((char)c)) {
// error invalid char between token and next delimiter
throw new IOException("Invalid char between encapsulated token and delimiter at line: " + getCurrentLineNumber() + ", position: " + getCharacterPosition());
throw new IOException("Invalid char between encapsulated token and delimiter at line: " +
getCurrentLineNumber() + ", position: " + getCharacterPosition());
}
}
}