[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:
parent
9e403efc7c
commit
8e613d14a9
@ -164,7 +164,6 @@ import org.jooq.tools.StringUtils;
|
||||
import org.jooq.tools.reflect.Reflect;
|
||||
import org.jooq.tools.reflect.ReflectException;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -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() {}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user