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 7ed2de039429bbaa6cdcc30e263bc05d0a0c8c75 Author: Martin Desruisseaux <[email protected]> AuthorDate: Tue Jan 8 20:51:09 2019 +0100 Avoid reference to a legacy (OGC 01-004) interface to be removed from GeoAPI. --- .../src/main/java/org/apache/sis/geometry/AbstractEnvelope.java | 2 +- .../src/test/java/org/apache/sis/referencing/cs/HardCodedAxes.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java b/core/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java index d34990e..1f4b02d 100644 --- a/core/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java +++ b/core/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java @@ -1003,7 +1003,7 @@ public abstract class AbstractEnvelope extends FormattableObject implements Enve * Compares to the specified envelope for equality up to the specified tolerance value. * The tolerance value {@code eps} can be either relative to the {@linkplain #getSpan(int) * envelope span} along each dimension or can be an absolute value (as for example some - * ground resolution of a {@linkplain org.opengis.coverage.grid.GridCoverage grid coverage}). + * ground resolution of a {@linkplain org.apache.sis.coverage.grid.GridCoverage grid coverage}). * * <ul> * <li>If {@code epsIsRelative} is set to {@code true}, the actual tolerance value for a diff --git a/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/HardCodedAxes.java b/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/HardCodedAxes.java index 8f2a36b..7f43445 100644 --- a/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/HardCodedAxes.java +++ b/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/HardCodedAxes.java @@ -432,7 +432,7 @@ public final strictfp class HardCodedAxes { AxisDirection.FUTURE, Units.DAY, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, null); /** - * Axis for column indices in a {@linkplain org.opengis.coverage.grid.GridCoverage grid coverage}. + * Axis for column indices in a {@linkplain org.apache.sis.coverage.grid.GridCoverage grid coverage}. * Increasing values go toward {@linkplain AxisDirection#COLUMN_POSITIVE positive column number}. * The abbreviation is lower case <cite>"i"</cite>. */ @@ -440,7 +440,7 @@ public final strictfp class HardCodedAxes { AxisDirection.COLUMN_POSITIVE, Units.UNITY, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, null); /** - * Axis for row indices in a {@linkplain org.opengis.coverage.grid.GridCoverage grid coverage}. + * Axis for row indices in a {@linkplain org.apache.sis.coverage.grid.GridCoverage grid coverage}. * Increasing values go toward {@linkplain AxisDirection#ROW_POSITIVE positive row number}. * The abbreviation is lower case <cite>"j"</cite>. */
