mirror of https://github.com/apache/poi.git
Bug-61947 remove deprecated method
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819762 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4c4bddf5c7
commit
f285780483
|
@ -147,15 +147,6 @@ public final class CHPFormattedDiskPage extends FormattedDiskPage
|
||||||
return chpx;
|
return chpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated Use {@link #toByteArray(CharIndexTranslator)} instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
protected byte[] toByteArray(CharIndexTranslator translator, int fcMin)
|
|
||||||
{
|
|
||||||
return toByteArray( translator );
|
|
||||||
}
|
|
||||||
|
|
||||||
protected byte[] toByteArray( CharIndexTranslator translator )
|
protected byte[] toByteArray( CharIndexTranslator translator )
|
||||||
{
|
{
|
||||||
byte[] buf = new byte[512];
|
byte[] buf = new byte[512];
|
||||||
|
|
|
@ -479,7 +479,7 @@ public class Range { // TODO -instantiable superclass
|
||||||
* @deprecated POI 3.8 beta 4. Use code shall not work with {@link ParagraphProperties}
|
* @deprecated POI 3.8 beta 4. Use code shall not work with {@link ParagraphProperties}
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
protected Paragraph insertAfter(ParagraphProperties props, int styleIndex)
|
Paragraph insertAfter(ParagraphProperties props, int styleIndex)
|
||||||
{
|
{
|
||||||
return this.insertAfter(props, styleIndex, "\r");
|
return this.insertAfter(props, styleIndex, "\r");
|
||||||
}
|
}
|
||||||
|
@ -501,7 +501,7 @@ public class Range { // TODO -instantiable superclass
|
||||||
* @deprecated POI 3.8 beta 4. Use code shall not work with {@link ParagraphProperties}
|
* @deprecated POI 3.8 beta 4. Use code shall not work with {@link ParagraphProperties}
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
protected Paragraph insertAfter(ParagraphProperties props, int styleIndex, String text)
|
Paragraph insertAfter(ParagraphProperties props, int styleIndex, String text)
|
||||||
{
|
{
|
||||||
initAll();
|
initAll();
|
||||||
StyleSheet ss = _doc.getStyleSheet();
|
StyleSheet ss = _doc.getStyleSheet();
|
||||||
|
|
Loading…
Reference in New Issue