diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-11-16 00:30:15 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-11-16 00:30:15 +0000 |
commit | 9d765c755cd25e54c1e2b99ddb13a99861d9ceb8 (patch) | |
tree | ed16be299d7ecc2f4fc233873c02777e705ee057 | |
parent | 423c02304d6e825cd717b773843b65ad7171d515 (diff) | |
download | poi-9d765c755cd25e54c1e2b99ddb13a99861d9ceb8.tar.gz poi-9d765c755cd25e54c1e2b99ddb13a99861d9ceb8.zip |
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895077 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFShape.java | 2 | ||||
-rw-r--r-- | poi/src/main/java/org/apache/poi/ss/formula/eval/AreaEval.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFShape.java b/poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFShape.java index f06230a4ce..36c53d32a2 100644 --- a/poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFShape.java +++ b/poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFShape.java @@ -90,7 +90,7 @@ public abstract class HSLFShape implements Shape<HSLFShape,HSLFTextParagraph> { private HSLFFill _fill; /** - * Create a Shape object. This constructor is used when an existing Shape is read from from a PowerPoint document. + * Create a Shape object. This constructor is used when an existing Shape is read from a PowerPoint document. * * @param escherRecord {@code EscherSpContainer} container which holds information about this shape * @param parent the parent of this Shape diff --git a/poi/src/main/java/org/apache/poi/ss/formula/eval/AreaEval.java b/poi/src/main/java/org/apache/poi/ss/formula/eval/AreaEval.java index 97e387147a..b3c19928fa 100644 --- a/poi/src/main/java/org/apache/poi/ss/formula/eval/AreaEval.java +++ b/poi/src/main/java/org/apache/poi/ss/formula/eval/AreaEval.java @@ -84,7 +84,7 @@ public interface AreaEval extends TwoDEval, ThreeDEval { ValueEval getRelativeValue(int relativeRowIndex, int relativeColumnIndex); /** - * Creates an AreaEval offset by a relative amount from from the upper left cell + * Creates an AreaEval offset by a relative amount from the upper left cell * of this area */ AreaEval offset(int relFirstRowIx, int relLastRowIx, int relFirstColIx, int relLastColIx); |