remove more deprecated methods

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1801697 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2017-07-12 08:38:20 +00:00
parent d6271eb665
commit 2a42bbafc6
3 changed files with 3 additions and 25 deletions

View File

@ -98,22 +98,6 @@ public final class DBCellRecord extends StandardRecord implements Cloneable {
protected int getDataSize() { protected int getDataSize() {
return 4 + field_2_cell_offsets.length * 2; return 4 + field_2_cell_offsets.length * 2;
} }
/**
* @param nBlocks number of blocks
* @param nRows number of rows
*
* @return the size of the group of <tt>DBCellRecord</tt>s needed to encode
* the specified number of blocks and rows
*
* @deprecated in POI 3.15-beta2, scheduled for removal in POI 3.17 - this method is not used within POI
*/
public static int calculateSizeOfRecords(int nBlocks, int nRows) {
// One DBCell per block.
// 8 bytes per DBCell (non variable section)
// 2 bytes per row reference
return nBlocks * 8 + nRows * 2;
}
public short getSid() { public short getSid() {
return sid; return sid;

View File

@ -37,6 +37,7 @@ import org.apache.poi.ss.usermodel.DataFormatter;
import org.apache.poi.ss.usermodel.DateUtil; import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.ss.util.DateFormatConverter; import org.apache.poi.ss.util.DateFormatConverter;
import org.apache.poi.util.LocaleUtil; import org.apache.poi.util.LocaleUtil;
import org.apache.poi.util.Removal;
/** /**
* Format a value according to the standard Excel behavior. This "standard" is * Format a value according to the standard Excel behavior. This "standard" is
@ -123,6 +124,8 @@ public class CellFormat {
* used when the format specified is <tt>General</tt>. * used when the format specified is <tt>General</tt>.
* @deprecated use {@link #getInstance(Locale, String)} instead * @deprecated use {@link #getInstance(Locale, String)} instead
*/ */
@Deprecated
@Removal(version="3.18")
public static final CellFormat GENERAL_FORMAT = createGeneralFormat(LocaleUtil.getUserLocale()); public static final CellFormat GENERAL_FORMAT = createGeneralFormat(LocaleUtil.getUserLocale());
private static CellFormat createGeneralFormat(final Locale locale) { private static CellFormat createGeneralFormat(final Locale locale) {

View File

@ -558,15 +558,6 @@ public class StylesTable extends POIXMLDocumentPart {
public int getNumDataFormats() { public int getNumDataFormats() {
return numberFormats.size(); return numberFormats.size();
} }
/**
* For unit testing only
* @deprecated POI 3.14 beta 2. Use {@link #getNumDataFormats()} instead.
*/
@Internal
public int _getNumberFormatSize() {
return getNumDataFormats();
}
/** /**
* For unit testing only * For unit testing only