Hi,
I've hit an issue when using Docx4J to manipulate a user's document that had a nested merge field in it. From what I can see, it looks like
- Code: Select all
FieldRef::getFldName()
will keep calling itself when it encounters at least some types of nested merge fields. It is this line in particular -
- Code: Select all
log.error("Nested field " + nested.getFldName());
. It reliably causes a StackOverflowError.
Are there any plans/timescales to fix this? I understand that nested fields are ...