[jOOQ/jOOQ#13593] Use dummy type variables to capture wildcards locally

This commit is contained in:
Lukas Eder 2022-10-28 11:21:16 +02:00
parent ecbbc85d16
commit c00e3571d2
2 changed files with 20 additions and 0 deletions

View File

@ -1826,6 +1826,23 @@ package org.jooq.impl;

View File

@ -218,6 +218,9 @@ public final class QOM {
// minimal example. Without the qualification, the types cannot be found
// despite being imported
/**
* A generic tuple of degree 2 for use in {@link QOM} types.
*/
public sealed interface UTuple2<Q1 extends org.jooq.QueryPart, Q2 extends org.jooq.QueryPart>
extends
org.jooq.QueryPart