From: Andreas Beeker Date: Sun, 1 Nov 2015 22:52:49 +0000 (+0000) Subject: #45908 - RichTextRun.setBullet(false) doesn't work, bullets still here X-Git-Tag: REL_3_14_BETA1~188 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=37236f2b52b97d1c5da71fe1dd7da7e083699575;p=poi.git #45908 - RichTextRun.setBullet(false) doesn't work, bullets still here git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711858 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java b/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java index 1162cbaa48..0ba0fd87ec 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java +++ b/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java @@ -90,7 +90,12 @@ import org.apache.poi.util.Units; * @author Yegor kozlov */ public final class HSLFSlideShow implements SlideShow, Closeable { - // What we're based on + enum LoadSavePhase { + INIT, LOADED; + } + private static ThreadLocal loadSavePhase = new ThreadLocal(); + + // What we're based on private HSLFSlideShowImpl _hslfSlideShow; // Pointers to the most recent versions of the core records @@ -127,6 +132,8 @@ public final class HSLFSlideShow implements SlideShow