[jOOQ/jOQO#12666] Fix Java 11 tags

This commit is contained in:
Lukas Eder 2021-11-26 12:51:19 +01:00
parent 0425739729
commit 482ac3d82d

View File

@ -586,10 +586,10 @@ final class ParsingStatement implements CallableStatement {
private static final byte[] readBytes(InputStream x, int length) {
try {
/* [java-11] */
if (true)
return x.readNBytes(length);
/* [/java-11]