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:
parent
f11bb182e9
commit
748e0c4981
@ -99,22 +99,6 @@ public final class DBCellRecord extends StandardRecord implements Cloneable {
|
|||||||
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;
|
||||||
}
|
}
|
||||||
|
@ -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) {
|
||||||
|
@ -559,15 +559,6 @@ public class StylesTable extends POIXMLDocumentPart {
|
|||||||
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
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user