From 72e7df6b5c68796bfde843363a1e189a66d2066e Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 10 Jul 2022 10:29:33 +0000 Subject: javadoc issues git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902624 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java | 2 +- .../src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java | 4 ++-- .../org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'poi-examples/src') diff --git a/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java b/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java index db737cd5bb..a48c8ed14b 100644 --- a/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java +++ b/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java @@ -51,7 +51,7 @@ public class RepeatingRowsAndColumns { sheet1.setRepeatingColumns(CellRangeAddress.valueOf("A:C")); // Set the rows to repeat from row 0 to 2 on the second sheet. sheet2.setRepeatingRows(CellRangeAddress.valueOf("1:3")); - // Set the the repeating rows and columns on the third sheet. + // Set the repeating rows and columns on the third sheet. CellRangeAddress cra = CellRangeAddress.valueOf("D1:E2"); sheet3.setRepeatingColumns(cra); sheet3.setRepeatingRows(cra); diff --git a/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java b/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java index 6a764d6e32..c41e4c0007 100644 --- a/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java +++ b/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java @@ -116,7 +116,7 @@ import java.util.Locale; *

* The following example demonstrates a slightly different way to insert an * image into cell A1 and to ensure that it occupies the whole of the cell. This - * is accomplished by specifying the the images bottom right hand corner should be + * is accomplished by specifying the images bottom right hand corner should be * aligned with the bottom right hand corner of the cell. It is also a case * where the image will not increase in size if the user increases the size of * the enclosing cell - irrespective of the anchors type - but it will reduce in @@ -182,7 +182,7 @@ import java.util.Locale; * * @version 1.00 5th August 2009. * 2.00 26th February 2010. - * Ported to make use of the the SS usermodel classes. + * Ported to make use of the SS usermodel classes. * Ability to reuse the Drawing Patriarch so that multiple images * can be inserted without unintentionally erasing earlier images. * Check on image type added; i.e. jpg, jpeg or png. diff --git a/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java b/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java index f05f6ff8d1..2fe5e9c826 100644 --- a/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java +++ b/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java @@ -65,7 +65,7 @@ public class WorkingWithPageSetup { // Set the columns to repeat from column 0 to 2 on the first sheet sheet1.setRepeatingColumns(CellRangeAddress.valueOf("A:C")); - // Set the the repeating rows and columns on the second sheet. + // Set the repeating rows and columns on the second sheet. CellRangeAddress cra = CellRangeAddress.valueOf("E2:F3"); sheet2.setRepeatingColumns(cra); sheet2.setRepeatingRows(cra); -- cgit v1.2.3