https://bz.apache.org/bugzilla/show_bug.cgi?id=60601

--- Comment #6 from Joachim Piketz <p...@uniquare.com> ---
In WildFly 9 the following Exception is thrown:

java.lang.IndexOutOfBoundsException
 at org.apache.xmlbeans.impl.store.Xobj.removeElement(Xobj.java:2206)
 at org.apache.xmlbeans.impl.store.Xobj.remove_element(Xobj.java:2236)
 at
org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTWorksheetImpl.unsetHyperlinks(Unknown
Source)
 ...

But not in WildFly 10!?

However i fixed it by applying an empty try/catch as a hotfix:

            try
            {
              worksheet.unsetHyperlinks();
            }
            catch (Exception ex)
            {
            }

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to