https://bz.apache.org/bugzilla/show_bug.cgi?id=59933
--- Comment #5 from Andreas <a.nieme...@euroimmun.de> --- Ok, I downloaded the 3.14 source from here: https://www.apache.org/dyn/closer.lua/poi/release/src/poi-src-3.14.tar.gz I did a few changes in 2 class files and compiled the source with Java 8, 32 bit. Fix 1) To fix the IllegalAccessError, the abstract methods in the POILogger class are changed to public instead of protected: abstract public void log(int level, Object obj1); abstract public void log(int level, Object obj1, final Throwable exception); Fix 2) Put the @Override annotation above the method: @Override public void log(int level, Object obj1, final Throwable exception) { // do nothing } -- 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