aboutsummaryrefslogtreecommitdiffstats
path: root/poi/src
diff options
context:
space:
mode:
Diffstat (limited to 'poi/src')
-rw-r--r--poi/src/main/java/org/apache/poi/ss/formula/CellCacheEntry.java1
-rw-r--r--poi/src/main/java/org/apache/poi/ss/formula/functions/TimeFunc.java7
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.