diff --git a/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/HWPFList.java b/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/HWPFList.java index 6c9a2a5dae..11a14b858c 100644 --- a/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/HWPFList.java +++ b/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/HWPFList.java @@ -31,7 +31,6 @@ import org.apache.poi.hwpf.model.ListLevel; import org.apache.poi.hwpf.model.StyleSheet; import org.apache.poi.hwpf.sprm.CharacterSprmCompressor; import org.apache.poi.hwpf.sprm.ParagraphSprmCompressor; -import org.apache.poi.util.Removal; /** * This class is used to create a list in a Word document. It is used in @@ -193,20 +192,6 @@ public final class HWPFList && !lfolvl.isFormatting(); } - /** - * @deprecated use {@link #isStartAtOverridden(char)} - */ - @Deprecated - @Removal(version = "POI 6.0.0") - public boolean isStartAtOverriden(char level ) - { - ListFormatOverrideLevel lfolvl = _lfoData.getRgLfoLvl().length > level ? _lfoData - .getRgLfoLvl()[level] : null; - - return lfolvl != null && lfolvl.getIStartAt() != 0 - && !lfolvl.isFormatting(); - } - public void setIgnoreLogicalLeftIdentation( boolean ignoreLogicalLeftIdentation ) {