diff options
author | Dominik Stadler <centic@apache.org> | 2024-07-18 07:10:35 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2024-07-18 07:10:35 +0000 |
commit | 67399705306ac98622a4cdbbdee70b79f169fe47 (patch) | |
tree | 4d741559134734fb5f88143760820bcd8c71f22a /poi | |
parent | 0dea4a301c971c42ceaf0ed43cc6a3545026507e (diff) | |
download | poi-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.java | 4 |
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; |