]> source.dussan.org Git - poi.git/commitdiff
lgtm javadoc issues
authorPJ Fanning <fanningpj@apache.org>
Sun, 3 Oct 2021 10:57:02 +0000 (10:57 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sun, 3 Oct 2021 10:57:02 +0000 (10:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893850 13f79535-47bb-0310-9956-ffa450edef68

poi-scratchpad/src/main/java/org/apache/poi/hwpf/sprm/SectionSprmUncompressor.java
poi-scratchpad/src/main/java/org/apache/poi/hwpf/sprm/TableSprmUncompressor.java
poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java
poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java

index 68375bb4432e536f151221c0b1826a58b8933867..eee19432271f62d2e154179c3b91a2d785793a82 100644 (file)
@@ -57,9 +57,7 @@ public final class SectionSprmUncompressor extends SprmUncompressor {
    * a single sprm.
    *
    * @param newSEP The SectionProperty to perform the operation on.
-   * @param operand The operation to perform.
-   * @param param The operation's parameter.
-   * @param varParam The operation variable length parameter.
+   * @param sprm The operation to perform.
    */
   static void unCompressSEPOperation (SectionProperties newSEP, SprmOperation sprm)
   {
index 9feb5057a3139599c172652af02eac1bef715f4c..2577bb05151268fecdaf886e514bdc057b3b5b9c 100644 (file)
@@ -80,9 +80,7 @@ public final class TableSprmUncompressor extends SprmUncompressor {
    * by a sprm stored in a tapx.
    *
    * @param newTAP The TableProperties object to perform the operation on.
-   * @param operand The operand that defines this operation.
-   * @param param The parameter for this operation.
-   * @param varParam Variable length parameter for this operation.
+   * @param sprm The operation to perform.
    */
   static void unCompressTAPOperation (TableProperties newTAP, SprmOperation sprm)
   {
index 79cc5301b6ba20a64ffe7657519ab532cbad8b1e..e87b83bb956afec61c50d824e1c96d963a36feea 100644 (file)
@@ -107,7 +107,6 @@ abstract class CellCacheEntry implements ICacheEntry {
      * Calls formulaCell.setFormulaResult(null, null) recursively all the way up the tree of
      * dependencies. Calls usedCell.clearConsumingCell(fc) for each child of a cell that is
      * cleared along the way.
-     * @param formulaCells
      */
     protected final void recurseClearCachedFormulaResults() {
         FormulaCellCacheEntry[] formulaCells = getConsumingCells();
index 311497011425e04aa883fd0781bed11b0b0ee8f4..74dd59f4dc2b49ebb9963906f79b8eadae503ea6 100644 (file)
@@ -58,10 +58,9 @@ public final class TimeFunc extends Fixed3ArgFunction {
     /**
      * Converts the supplied hours, minutes and seconds to an Excel time value.
      *
-     *
-     * @param ds array of 3 doubles containing hours, minutes and seconds.
-     * Non-integer inputs are truncated to an integer before further calculation
-     * of the time value.
+     * @param hours
+     * @param minutes
+     * @param seconds as an integer
      * @return An Excel representation of a time of day.
      * If the time value represents more than a day, the days are removed from
      * the result, leaving only the time of day component.