You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sis.apache.org by de...@apache.org on 2023/04/23 17:03:36 UTC

[sis] 01/02: Fix a compilation error which was unnoticed before Java 20.

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 <ma...@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.
      */