Adjust max recursion nesting

Otherwise this still triggered StackOverflow on some version of JDK

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1912403 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2023-09-18 18:25:56 +00:00
parent 88bbfbb3f7
commit c32699c5b0
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ import org.w3c.dom.Element;
public class WordToTextConverter extends AbstractWordConverter {
private static final Logger LOG = LogManager.getLogger(WordToTextConverter.class);
private static final int MAX_NESTED_CHILD_NODES = 500;
private static final int MAX_NESTED_CHILD_NODES = 400;
public static String getText( DirectoryNode root ) throws Exception
{