diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-10-03 10:57:02 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-10-03 10:57:02 +0000 |
commit | 875e921f86d07579c6d4ba04a90cd282950f0950 (patch) | |
tree | e51445620927da53999683c59effc81bcb71330a /poi/src | |
parent | e9270143aa55c1498cbd99eb097e92312fcfcce1 (diff) | |
download | poi-875e921f86d07579c6d4ba04a90cd282950f0950.tar.gz poi-875e921f86d07579c6d4ba04a90cd282950f0950.zip |
lgtm javadoc issues
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893850 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi/src')
-rw-r--r-- | poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java | 1 | ||||
-rw-r--r-- | poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java b/poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java index 79cc5301b6..e87b83bb95 100644 --- a/poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java +++ b/poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java @@ -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(); diff --git a/poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java b/poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java index 3114970114..74dd59f4dc 100644 --- a/poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java +++ b/poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java @@ -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. |