You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2022/07/10 10:29:34 UTC

svn commit: r1902624 - in /poi/trunk: poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/ poi-examples/src/main/java/org/apache/poi/examples/ss/ poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/ poi-ooxml/src/main/java/o...

Author: fanningpj
Date: Sun Jul 10 10:29:33 2022
New Revision: 1902624

URL: http://svn.apache.org/viewvc?rev=1902624&view=rev
Log:
javadoc issues

Modified:
    poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java
    poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java
    poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java
    poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java
    poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/Styles.java
    poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/StylesTable.java
    poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java
    poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java
    poi/trunk/poi-ooxml/src/test/java/org/apache/poi/ss/tests/formula/TestFormulaParser.java
    poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherSpRecord.java
    poi/trunk/poi/src/main/java/org/apache/poi/ddf/UnknownEscherRecord.java
    poi/trunk/poi/src/main/java/org/apache/poi/hpsf/Section.java
    poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/DVALRecord.java
    poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/NoteStructureSubRecord.java
    poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java
    poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java
    poi/trunk/poi/src/main/java/org/apache/poi/poifs/crypt/CryptoFunctions.java
    poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/BATManaged.java
    poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java
    poi/trunk/poi/src/main/java/org/apache/poi/poifs/macros/VBAMacroReader.java
    poi/trunk/poi/src/main/java/org/apache/poi/poifs/property/PropertyTable.java
    poi/trunk/poi/src/main/java/org/apache/poi/sl/usermodel/PresetColor.java
    poi/trunk/poi/src/main/java/org/apache/poi/ss/util/ImageUtils.java
    poi/trunk/poi/src/main/java/org/apache/poi/ss/util/MutableFPNumber.java
    poi/trunk/poi/src/test/java/org/apache/poi/hssf/model/TestFormulaParser.java
    poi/trunk/poi/src/test/java/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java
    poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestNamedRange.java

Modified: poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java (original)
+++ poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/hssf/usermodel/RepeatingRowsAndColumns.java Sun Jul 10 10:29:33 2022
@@ -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);

Modified: poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java (original)
+++ poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/ss/AddDimensionedImage.java Sun Jul 10 10:29:33 2022
@@ -116,7 +116,7 @@ import java.util.Locale;
  * <p>
  * 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.

Modified: poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java (original)
+++ poi/trunk/poi-examples/src/main/java/org/apache/poi/examples/xssf/usermodel/WorkingWithPageSetup.java Sun Jul 10 10:29:33 2022
@@ -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);

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java Sun Jul 10 10:29:33 2022
@@ -1469,7 +1469,7 @@ public abstract class OPCPackage impleme
 
         this.throwExceptionIfReadOnly();
 
-        // You shouldn't save the the same file, do a close instead
+        // You shouldn't save the same file, do a close instead
         if(targetFile.exists() &&
                 targetFile.getAbsolutePath().equals(this.originalPackagePath)) {
             throw new InvalidOperationException(

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/Styles.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/Styles.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/Styles.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/Styles.java Sun Jul 10 10:29:33 2022
@@ -34,7 +34,7 @@ public interface Styles {
 
     /**
      * Puts <code>fmt</code> in the numberFormats map if the format is not
-     * already in the the number format style table.
+     * already in the number format style table.
      * Does nothing if <code>fmt</code> is already in number format style table.
      *
      * @param fmt the number format to add to number format style table

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/StylesTable.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/StylesTable.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/StylesTable.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/model/StylesTable.java Sun Jul 10 10:29:33 2022
@@ -308,7 +308,7 @@ public class StylesTable extends POIXMLD
 
     /**
      * Puts {@code fmt} in the numberFormats map if the format is not
-     * already in the the number format style table.
+     * already in the number format style table.
      * Does nothing if {@code fmt} is already in number format style table.
      *
      * @param fmt the number format to add to number format style table

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFWorkbook.java Sun Jul 10 10:29:33 2022
@@ -338,7 +338,7 @@ public class SXSSFWorkbook implements Wo
      *   If the "compress" flag is set to <code>true</code> then the temporary XML is gzipped.
      * </p>
      * <p>
-     *     Please note the the "compress" option may cause performance penalty.
+     *     Please note the "compress" option may cause performance penalty.
      * </p>
      * <p>
      *     Setting this option only affects compression for subsequent <code>createSheet()</code>

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java Sun Jul 10 10:29:33 2022
@@ -51,7 +51,7 @@ import org.openxmlformats.schemas.spread
 
 /**
  *
- * High level representation of the the possible formatting information for the contents of the cells on a sheet in a
+ * High level representation of the possible formatting information for the contents of the cells on a sheet in a
  * SpreadsheetML document.
  *
  * @see org.apache.poi.xssf.usermodel.XSSFWorkbook#createCellStyle()

Modified: poi/trunk/poi-ooxml/src/test/java/org/apache/poi/ss/tests/formula/TestFormulaParser.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/test/java/org/apache/poi/ss/tests/formula/TestFormulaParser.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/test/java/org/apache/poi/ss/tests/formula/TestFormulaParser.java (original)
+++ poi/trunk/poi-ooxml/src/test/java/org/apache/poi/ss/tests/formula/TestFormulaParser.java Sun Jul 10 10:29:33 2022
@@ -108,7 +108,7 @@ class TestFormulaParser {
             assertEquals("arg", arg.getValue());
 
             // The external FunctionPtg is the last Ptg added to the stack
-            // During formula evaluation, this Ptg pops off the the appropriate number of
+            // During formula evaluation, this Ptg pops off the appropriate number of
             // arguments (getNumberOfOperands()) and pushes the result on the stack
             AbstractFunctionPtg tfunc = (AbstractFunctionPtg) ptg[2];
             assertTrue(tfunc.isExternalFunction());

Modified: poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherSpRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherSpRecord.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherSpRecord.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ddf/EscherSpRecord.java Sun Jul 10 10:29:33 2022
@@ -26,7 +26,7 @@ import org.apache.poi.util.GenericRecord
 import org.apache.poi.util.LittleEndian;
 
 /**
- * Together the the EscherOptRecord this record defines some of the basic
+ * Together the EscherOptRecord this record defines some of the basic
  * properties of a shape.
  */
 public class EscherSpRecord extends EscherRecord {

Modified: poi/trunk/poi/src/main/java/org/apache/poi/ddf/UnknownEscherRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ddf/UnknownEscherRecord.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ddf/UnknownEscherRecord.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ddf/UnknownEscherRecord.java Sun Jul 10 10:29:33 2022
@@ -39,7 +39,7 @@ public final class UnknownEscherRecord e
 
     private static final byte[] NO_BYTES = new byte[0];
 
-    /** The data for this record not including the the 8 byte header */
+    /** The data for this record not including the 8 byte header */
     private byte[] thedata = NO_BYTES;
     private final List<EscherRecord> _childRecords = new ArrayList<>();
 

Modified: poi/trunk/poi/src/main/java/org/apache/poi/hpsf/Section.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hpsf/Section.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hpsf/Section.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hpsf/Section.java Sun Jul 10 10:29:33 2022
@@ -634,7 +634,7 @@ public class Section {
 
     /**
      * Checks whether this section is equal to another object. The result is
-     * {@code false} if one of the the following conditions holds:
+     * {@code false} if one of the following conditions holds:
      *
      * <ul>
      *

Modified: poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/DVALRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/DVALRecord.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/DVALRecord.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/DVALRecord.java Sun Jul 10 10:29:33 2022
@@ -118,7 +118,7 @@ public final class DVALRecord extends St
     }
 
     /**
-     * @return the the Vertical position of the dialog
+     * @return the Vertical position of the dialog
      */
     public int getVerticalPos() {
         return field_3_vert_pos;

Modified: poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/NoteStructureSubRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/NoteStructureSubRecord.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/NoteStructureSubRecord.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/NoteStructureSubRecord.java Sun Jul 10 10:29:33 2022
@@ -43,7 +43,7 @@ public final class NoteStructureSubRecor
      * fill its data with the default values
      */
     public NoteStructureSubRecord() {
-        //all we know is that the the length of <code>NoteStructureSubRecord</code> is always 22 bytes
+        //all we know is that the length of <code>NoteStructureSubRecord</code> is always 22 bytes
         reserved = new byte[ENCODED_SIZE];
     }
 

Modified: poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java Sun Jul 10 10:29:33 2022
@@ -82,7 +82,7 @@ public final class FormulaRecordAggregat
      * {@link SharedFormulaRecord} does not exist). Normally this would leave no way of determining
      * the {@link Ptg} tokens for the formula.  However as it turns out in these
      * cases, Excel encodes the unshared {@link Ptg} tokens in the right place (inside the {@link
-     * FormulaRecord}).  So the the only thing that needs to be done is to ignore the erroneous
+     * FormulaRecord}).  So the only thing that needs to be done is to ignore the erroneous
      * shared formula flag.<br>
      *
      * This method may also be used for setting breakpoints to help diagnose issues regarding the

Modified: poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java Sun Jul 10 10:29:33 2022
@@ -184,7 +184,7 @@ public final class SharedValueManager {
      *
      * @return the SHRFMLA, TABLE or ARRAY record for the formula cell, if it is the first cell of
      * a table or array region. {@code null} if the formula cell is not shared/array/table,
-     * or if the specified formula is not the the first in the group.
+     * or if the specified formula is not the first in the group.
      */
     public SharedValueRecordBase getRecordForFirstCell(FormulaRecordAggregate agg) {
         CellReference firstCell = agg.getFormulaRecord().getFormula().getExpReference();

Modified: poi/trunk/poi/src/main/java/org/apache/poi/poifs/crypt/CryptoFunctions.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/poifs/crypt/CryptoFunctions.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/poifs/crypt/CryptoFunctions.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/poifs/crypt/CryptoFunctions.java Sun Jul 10 10:29:33 2022
@@ -161,7 +161,7 @@ public final class CryptoFunctions {
      *     {@code blockKey: IV = H(KeySalt + blockKey)}</li>
      * <li>If a blockKey is not provided, let IV be equal to the following value:<br>
      *     {@code KeySalt:IV = KeySalt}</li>
-     * <li>If the number of bytes in the value of IV is less than the the value of the blockSize attribute
+     * <li>If the number of bytes in the value of IV is less than the value of the blockSize attribute
      *     corresponding to the cipherAlgorithm attribute, pad the array of bytes by appending 0x36 until
      *     the array is blockSize bytes. If the array of bytes is larger than blockSize bytes, truncate the
      *     array to blockSize bytes.</li>

Modified: poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/BATManaged.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/BATManaged.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/BATManaged.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/BATManaged.java Sun Jul 10 10:29:33 2022
@@ -39,7 +39,7 @@ public interface BATManaged
      * Set the start block for this instance
      *
      * @param index index into the array of BigBlock instances making
-     *              up the the filesystem
+     *              up the filesystem
      */
 
     void setStartBlock(final int index);

Modified: poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java Sun Jul 10 10:29:33 2022
@@ -52,7 +52,7 @@ public class POIFSDocumentPath {
      * constructor for the path of a document that is not in the root of the POIFSFileSystem
      *
      * @param components the Strings making up the path to a document.
-     *      The Strings must be ordered as they appear in the directory hierarchy of the the document.
+     *      The Strings must be ordered as they appear in the directory hierarchy of the document.
      *      The first string must be the name of a directory in the root of the POIFSFileSystem, and
      *      every Nth (for N &gt; 1) string thereafter must be the name of a directory in the directory
      *      identified by the (N-1)th string.<p>

Modified: poi/trunk/poi/src/main/java/org/apache/poi/poifs/macros/VBAMacroReader.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/poifs/macros/VBAMacroReader.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/poifs/macros/VBAMacroReader.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/poifs/macros/VBAMacroReader.java Sun Jul 10 10:29:33 2022
@@ -785,7 +785,7 @@ public class VBAMacroReader implements C
 
     /**
      * Sometimes the offset record in the dirstream is incorrect, but the macro can still be found.
-     * This will try to find the the first RLEDecompressing stream that starts with "Attribute".
+     * This will try to find the first RLEDecompressing stream that starts with "Attribute".
      * This relies on some, er, heuristics, admittedly.
      *
      * @param is full module inputstream to read

Modified: poi/trunk/poi/src/main/java/org/apache/poi/poifs/property/PropertyTable.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/poifs/property/PropertyTable.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/poifs/property/PropertyTable.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/poifs/property/PropertyTable.java Sun Jul 10 10:29:33 2022
@@ -152,7 +152,7 @@ public final class PropertyTable impleme
      * Set the start block for this instance
      *
      * @param index index into the array of BigBlock instances making
-     *              up the the filesystem
+     *              up the filesystem
      */
     public void setStartBlock(final int index) {
         _header_block.setPropertyStart(index);

Modified: poi/trunk/poi/src/main/java/org/apache/poi/sl/usermodel/PresetColor.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/sl/usermodel/PresetColor.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/sl/usermodel/PresetColor.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/sl/usermodel/PresetColor.java Sun Jul 10 10:29:33 2022
@@ -31,7 +31,7 @@ import java.util.Map;
  */
 public enum PresetColor {
     // the order of this enum can be found in the definition of .net System.Drawing.KnownColor enumeration
-    // or by running the the program in the linked documentation
+    // or by running the program in the linked documentation
     
     // default colors for theme-depending colors taken from ... (last post):
     // https://social.technet.microsoft.com/Forums/windows/en-US/ac76cc56-6ff2-4778-b260-8141d7170a3b/windows-7-highlight-text-color-or-selected-text-color-in-aero

Modified: poi/trunk/poi/src/main/java/org/apache/poi/ss/util/ImageUtils.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ss/util/ImageUtils.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ss/util/ImageUtils.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ss/util/ImageUtils.java Sun Jul 10 10:29:33 2022
@@ -111,7 +111,7 @@ public final class ImageUtils {
 
     /**
      * The metadata of PNG and JPEG can contain the width of a pixel in millimeters.
-     * Return the the "effective" dpi calculated as <code>25.4/HorizontalPixelSize</code>
+     * Return the "effective" dpi calculated as <code>25.4/HorizontalPixelSize</code>
      * and <code>25.4/VerticalPixelSize</code>.  Where 25.4 is the number of mm in inch.
      *
      * @return array of two elements: <code>{horizontalDpi, verticalDpi}</code>.

Modified: poi/trunk/poi/src/main/java/org/apache/poi/ss/util/MutableFPNumber.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ss/util/MutableFPNumber.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ss/util/MutableFPNumber.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ss/util/MutableFPNumber.java Sun Jul 10 10:29:33 2022
@@ -25,7 +25,7 @@ final class MutableFPNumber {
     // TODO - what about values between (10<sup>14</sup>-0.5) and (10<sup>14</sup>-0.05) ?
     /**
      * The minimum value in 'Base-10 normalised form'.<br>
-     * When {@link #_binaryExponent} == 46 this is the the minimum {@link #_frac} value
+     * When {@link #_binaryExponent} == 46 this is the minimum {@link #_frac} value
      *  (10<sup>14</sup>-0.05) * 2^17
      *  <br>
      *  Values between (10<sup>14</sup>-0.05) and 10<sup>14</sup> will be represented as '1'

Modified: poi/trunk/poi/src/test/java/org/apache/poi/hssf/model/TestFormulaParser.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/test/java/org/apache/poi/hssf/model/TestFormulaParser.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/test/java/org/apache/poi/hssf/model/TestFormulaParser.java (original)
+++ poi/trunk/poi/src/test/java/org/apache/poi/hssf/model/TestFormulaParser.java Sun Jul 10 10:29:33 2022
@@ -139,7 +139,7 @@ final class TestFormulaParser {
             assertEquals("arg", arg.getValue());
 
             // The external FunctionPtg is the last Ptg added to the stack
-            // During formula evaluation, this Ptg pops off the the appropriate number of
+            // During formula evaluation, this Ptg pops off the appropriate number of
             // arguments (getNumberOfOperands()) and pushes the result on the stack
             AbstractFunctionPtg tfunc = (AbstractFunctionPtg) ptg[2]; //FuncVarPtg
             assertTrue(tfunc.isExternalFunction());

Modified: poi/trunk/poi/src/test/java/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/test/java/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/test/java/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java (original)
+++ poi/trunk/poi/src/test/java/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java Sun Jul 10 10:29:33 2022
@@ -298,7 +298,7 @@ public final class TestHSSFDataFormatter
         while (it.hasNext()) {
             HSSFCell cell = (HSSFCell) it.next();
             log(formatter.formatCellValue(cell));
-            // in some locales the the decimal delimiter is a comma, not a dot
+            // in some locales the decimal delimiter is a comma, not a dot
             char decimalSeparator = DecimalFormatSymbols.getInstance(LocaleUtil.getUserLocale()).getDecimalSeparator();
             assertEquals("12345678" + decimalSeparator + "9", formatter.formatCellValue(cell));
         }

Modified: poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestNamedRange.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestNamedRange.java?rev=1902624&r1=1902623&r2=1902624&view=diff
==============================================================================
--- poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestNamedRange.java (original)
+++ poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestNamedRange.java Sun Jul 10 10:29:33 2022
@@ -524,7 +524,7 @@ public abstract class BaseTestNamedRange
      * </pre>
      *
      * This caused trouble for anything that requires {@link Name#getRefersToFormula()}
-     * It is easy enough to re-create the the same data (by not setting the formula). Excel
+     * It is easy enough to re-create the same data (by not setting the formula). Excel
      * seems to gracefully remove this uninitialized name record.  It would be nice if POI
      * could do the same, but that would involve adjusting subsequent name indexes across
      * all formulas. <p>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org