From c0785057af51e8f04e56943f3644fb2d9d7d9899 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Tue, 27 Oct 2020 14:28:39 +0100 Subject: [PATCH] [jOOQ/jOOQ#10775] Make current API Internal --- jOOQ/src/main/java/org/jooq/Rows.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/Rows.java b/jOOQ/src/main/java/org/jooq/Rows.java index 1c0380b62e..3dbfa99ae2 100644 --- a/jOOQ/src/main/java/org/jooq/Rows.java +++ b/jOOQ/src/main/java/org/jooq/Rows.java @@ -48,10 +48,14 @@ import org.jooq.impl.DSL; /** * An auxiliary class for constructing {@link Row} collections. + *

+ * The current implementation is in draft stage. It may be changed incompatibly + * in the future. Use at your own risk. * * @author Dmitry Baev * @author Lukas Eder */ +@Internal public final class Rows {