This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
commit 59b0f4a2a1dd5e5de7454f43b6c752840c73c26a Author: Martin Desruisseaux <martin.desruisse...@geomatys.com> AuthorDate: Sun Apr 23 19:01:47 2023 +0200 Fix a compilation error which was unnoticed before Java 20. --- .../src/main/java/org/apache/sis/internal/sql/feature/Column.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/sis-sqlstore/src/main/java/org/apache/sis/internal/sql/feature/Column.java b/storage/sis-sqlstore/src/main/java/org/apache/sis/internal/sql/feature/Column.java index 40b4624ea1..3550760200 100644 --- a/storage/sis-sqlstore/src/main/java/org/apache/sis/internal/sql/feature/Column.java +++ b/storage/sis-sqlstore/src/main/java/org/apache/sis/internal/sql/feature/Column.java @@ -189,7 +189,7 @@ public final class Column { * For example, we sometimes get {@code "public"."geometry"} (including the quotes) * instead of a plain {@code geometry}. If this is the case, keep only the local part. * - * @param type value found in the {@value Reflection.TYPE_NAME} column. + * @param type value found in the {@value Reflection#TYPE_NAME} column. * @param quote value of {@code DatabaseMetaData.getIdentifierQuoteString()}. * @return local part of the type name. */