remove deprecated isStartAtOverriden

This commit is contained in:
PJ Fanning 2025-11-19 13:44:59 +01:00
parent 71b4b62a6d
commit ae0a17765e

View File

@ -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 )
{