Im receiving the following error when I try to convert from html to pdf using XHTMLImporterImpl
java.lang.NoSuchMethodError: 'void org.docx4j.finders.RangeFinder.<init>(java.lang.String, java.lang.String)'
at org.docx4j.convert.in.xhtml.BookmarkHelper.initBookmarkIdStart(BookmarkHelper.java:91)
at org.docx4j.convert.in.xhtml.BookmarkHelper.getBookmarkId(BookmarkHelper.java:82)
at org.docx4j.convert.in.xhtml.BookmarkHelper.anchorToBookmark(BookmarkHelper.java:187)
at org.docx4j.convert.in.xhtml.XHTMLImporterImpl.traverseBlockBox(XHTMLImporterImpl.java:1034)
at org.docx4j.convert.in.xhtml.XHTMLImporterImpl.traverse(XHTMLImporterImpl.java:995)
at org.docx4j.convert.in.xhtml.XHTMLImporterImpl.traverse(XHTMLImporterImpl.java:986)
at org.docx4j.convert.in.xhtml.XHTMLImporterImpl.convert(XHTMLImporterImpl.java:788)
at.....WordToPdfUtil.convertHtmlToWordListObject(WordToPdfUtil.java:946)
org.docx4j.finders.RangeFinder class seems to have changed in 8.3.10 where the constructor that takes the bookmark start and end was removed. Seems to be an issue where the latest lib for the converter references code in the core package that was ...