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 f3b87453634eaeb07966fb1d5964474b5aac386c Author: Martin Desruisseaux <[email protected]> AuthorDate: Sat Jul 1 16:36:25 2023 +0200 Reduce the visibility of `SymbologyVisitor` to package-private. Compatibility with previous version is broken by SIS-583 and will probably breaks again in future versions, because this class also needs review. This is an internal class, so it should not be used outside SIS. --- .../src/main/java/org/apache/sis/internal/map/SymbologyVisitor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/SymbologyVisitor.java b/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/SymbologyVisitor.java index a633f4332f..caf767c282 100644 --- a/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/SymbologyVisitor.java +++ b/core/sis-portrayal/src/main/java/org/apache/sis/internal/map/SymbologyVisitor.java @@ -39,7 +39,7 @@ import static org.apache.sis.internal.util.CollectionsExt.nonNull; * @version 1.5 * @since 1.5 */ -public abstract class SymbologyVisitor { +abstract class SymbologyVisitor { protected SymbologyVisitor() { }
