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
The following commit(s) were added to refs/heads/geoapi-4.0 by this push:
new 402736e Fix a few broken {@code} annotations in javadoc.
402736e is described below
commit 402736ee436ca707b033be07f5166858783b471d
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Wed Mar 10 19:00:40 2021 +0100
Fix a few broken {@code} annotations in javadoc.
---
core/sis-feature/src/main/java/org/apache/sis/image/PlanarImage.java | 4 ++--
.../src/main/java/org/apache/sis/io/wkt/AbstractParser.java | 2 +-
.../sis/referencing/operation/transform/WraparoundTransform.java | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/core/sis-feature/src/main/java/org/apache/sis/image/PlanarImage.java
b/core/sis-feature/src/main/java/org/apache/sis/image/PlanarImage.java
index 88ed8f8..397dec2 100644
--- a/core/sis-feature/src/main/java/org/apache/sis/image/PlanarImage.java
+++ b/core/sis-feature/src/main/java/org/apache/sis/image/PlanarImage.java
@@ -524,8 +524,8 @@ public abstract class PlanarImage implements RenderedImage {
* <li>{@code "width"} — image width is not an integer multiple of
tile width.</li>
* <li>{@code "numYTiles"} — number of tiles on the Y axis is
inconsistent with image height.</li>
* <li>{@code "height"} — image height is not an integer multiple
of tile height.</li>
- * <li>{@code "tileX"} — {@ode minTileX} and/or {@code
tileGridXOffset} is inconsistent.</li>
- * <li>{@code "tileY"} — {@ode minTileY} and/or {@code
tileGridYOffset} is inconsistent.</li>
+ * <li>{@code "tileX"} — {@code minTileX} and/or {@code
tileGridXOffset} is inconsistent.</li>
+ * <li>{@code "tileY"} — {@code minTileY} and/or {@code
tileGridYOffset} is inconsistent.</li>
* </ul>
*
* Subclasses may perform additional checks. For example some subclasses
also check specifically
diff --git
a/core/sis-referencing/src/main/java/org/apache/sis/io/wkt/AbstractParser.java
b/core/sis-referencing/src/main/java/org/apache/sis/io/wkt/AbstractParser.java
index b0ce14f..c0d057f 100644
---
a/core/sis-referencing/src/main/java/org/apache/sis/io/wkt/AbstractParser.java
+++
b/core/sis-referencing/src/main/java/org/apache/sis/io/wkt/AbstractParser.java
@@ -204,7 +204,7 @@ abstract class AbstractParser implements Parser {
/**
* Returns the name of the method invoked from {@link #getPublicFacade()}.
* This information is used for logging purposes only.
- * Another possible value is {@codd "parse"}.
+ * Another possible value is {@code "parse"}.
*/
String getFacadeMethod() {
return "createFromWKT";
diff --git
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
index 4c8ba42..51281db 100644
---
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
+++
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
@@ -56,7 +56,7 @@ import org.apache.sis.util.logging.Logging;
* Callers need to create {@code WraparoundTransform} instances explicitly if
discontinuities are acceptable.
*
* <h2>Subclassing</h2>
- * In order to control the discontinuity problem, it may be necessary to
subclass {@codd WraparoundTransform}
+ * In order to control the discontinuity problem, it may be necessary to
subclass {@code WraparoundTransform}
* and override the {@link #shift(double)} method. For example a subclass may
control the wraparounds in a way
* to prevent the {@linkplain
org.apache.sis.geometry.AbstractEnvelope#getLowerCorner() lower corner} of an
envelope
* to become greater than the {@linkplain
org.apache.sis.geometry.AbstractEnvelope#getUpperCorner() upper corner}.