aboutsummaryrefslogtreecommitdiffstats
path: root/poi
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2024-07-18 07:10:35 +0000
committerDominik Stadler <centic@apache.org>2024-07-18 07:10:35 +0000
commit67399705306ac98622a4cdbbdee70b79f169fe47 (patch)
tree4d741559134734fb5f88143760820bcd8c71f22a /poi
parent0dea4a301c971c42ceaf0ed43cc6a3545026507e (diff)
downloadpoi-67399705306ac98622a4cdbbdee70b79f169fe47.tar.gz
poi-67399705306ac98622a4cdbbdee70b79f169fe47.zip
Apply some IDE suggestions, improve JavaDoc and simplify reporting log messages
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1919343 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r--poi/src/main/java/org/apache/poi/ddf/EscherRecord.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java b/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java
index e633a92079..de5b95b22d 100644
--- a/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java
+++ b/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java
@@ -373,14 +373,14 @@ public abstract class EscherRecord implements Duplicatable, GenericRecord {
public abstract EscherRecord copy();
/**
- * @param length the max record length allowed for EscherArrayProperty
+ * @param length the max number of children allowed for EscherRecords which support nesting
*/
public static void setMaxNumberOfChildren(int length) {
MAX_NUMBER_OF_CHILDREN = length;
}
/**
- * @return the max record length allowed for EscherArrayProperty
+ * @return the max number of children allowed for EscherRecords which support nesting
*/
public static int getMaxNumberOfChildren() {
return MAX_NUMBER_OF_CHILDREN;