From 67399705306ac98622a4cdbbdee70b79f169fe47 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Thu, 18 Jul 2024 07:10:35 +0000 Subject: 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 --- poi/src/main/java/org/apache/poi/ddf/EscherRecord.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poi') 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; -- cgit v1.2.3