From 3e3353d99340c1721f1f4368a8031b6433542e64 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 3 Jul 2020 14:21:51 +0200 Subject: [PATCH] Fixed some warnings --- jOOQ/src/main/java/org/jooq/ForeignKey.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jOOQ/src/main/java/org/jooq/ForeignKey.java b/jOOQ/src/main/java/org/jooq/ForeignKey.java index 894c17ace5..61fcb3ff2e 100644 --- a/jOOQ/src/main/java/org/jooq/ForeignKey.java +++ b/jOOQ/src/main/java/org/jooq/ForeignKey.java @@ -56,6 +56,7 @@ import org.jetbrains.annotations.Nullable; * @param The referenced KEY's owner table record * @author Lukas Eder */ +@SuppressWarnings("unchecked") public interface ForeignKey extends Key { /** @@ -79,7 +80,7 @@ public interface ForeignKey extends Key { *

* This returns the order in which the fields of {@link #getKey()} are * referenced, which is usually the same as the fields of - * {@link UniqueKey#getKeyFieldsArray()}, but not necessarily so. + * {@link UniqueKey#getFieldsArray()}, but not necessarily so. * * @see #getKeyFields() */