[jOOQ/jOOQ#8953] Generate Internal#createQueue() call into Queues.java

The code generator will now generate a call to the new
`Internal#createQueue()` factory method instead of directly calling the
`QueueImpl` constructor.
This commit is contained in:
Knut Wannheden 2020-01-22 17:34:15 +01:00
parent 9e403efc7c
commit 8e613d14a9
2 changed files with 12 additions and 1 deletions

View File

@ -164,7 +164,6 @@ import org.jooq.tools.StringUtils;
import org.jooq.tools.reflect.Reflect;
import org.jooq.tools.reflect.ReflectException;
// ...
// ...
/**

View File

@ -47,12 +47,17 @@ import org.jooq.Index;
import org.jooq.Name;
import org.jooq.OrderField;
import org.jooq.Parameter;
// ...
import org.jooq.Record;
import org.jooq.Schema;
import org.jooq.Sequence;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.UDT;
import org.jooq.UDTRecord;
import org.jooq.UniqueKey;
// ...
// ...
/**
* A utility class that grants access to internal API, to be used only by
@ -243,5 +248,12 @@ public final class Internal {
return new ParameterImpl<>(name, actualType, actualBinding, isDefaulted, isUnnamed);
}
private Internal() {}
}