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 5491224b8b2c34260bb226c274dc15fb504916cb Author: Martin Desruisseaux <[email protected]> AuthorDate: Mon Dec 23 15:14:49 2019 +0100 Fix compiler error in Javadoc. --- .../src/main/java/org/apache/sis/internal/map/MapItem.java | 2 +- .../src/main/java/org/apache/sis/internal/map/package-info.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/MapItem.java b/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/MapItem.java index 2338a43..4c50463 100644 --- a/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/MapItem.java +++ b/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/MapItem.java @@ -93,7 +93,7 @@ public abstract class MapItem { /** * Sets whether this item should be shown on the map. - * If this item is a {@link MapGroup}, then hiding this group should hide all components in this group. + * If this item is a {@code MapGroup}, then hiding this group should hide all components in this group. * * @param visible {@code false} to hide this item and all it's components. */ diff --git a/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/package-info.java b/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/package-info.java index a0d5049..24003d3 100644 --- a/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/package-info.java +++ b/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/package-info.java @@ -18,7 +18,7 @@ /** * Symbology and map representations, together with a rendering engine for display. - * The {@linkplain org.apache.sis.internal.map.MapContext map context} is the root node of a map. + * The {@linkplain org.apache.sis.internal.map.MapItem map item} is the root node of a map. * * <p><b>WARNING:</b> this package is work in progress and is not yet part of public API. * Some classes in this package will move to public API after we gained enough confidence
