Browse Source

remove some deprecated code

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884227 13f79535-47bb-0310-9956-ffa450edef68
tags/before_ooxml_3rd_edition
PJ Fanning 3 years ago
parent
commit
451e47021b

+ 0
- 11
src/java/org/apache/poi/hssf/record/DBCellRecord.java View File

@@ -22,7 +22,6 @@ import java.util.function.Supplier;

import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* Used by Excel and other MS apps to quickly find rows in the sheets.
@@ -67,16 +66,6 @@ public final class DBCellRecord extends StandardRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public DBCellRecord clone() {
return copy();
}

@Override
public DBCellRecord copy() {
// safe because immutable

+ 0
- 11
src/java/org/apache/poi/hssf/record/FileSharingRecord.java View File

@@ -22,7 +22,6 @@ import java.util.function.Supplier;

import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;
import org.apache.poi.util.StringUtil;

/**
@@ -133,16 +132,6 @@ public final class FileSharingRecord extends StandardRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public FileSharingRecord clone() {
return copy();
}

@Override
public FileSharingRecord copy() {
return new FileSharingRecord(this);

+ 0
- 11
src/java/org/apache/poi/hssf/record/HCenterRecord.java View File

@@ -21,7 +21,6 @@ import java.util.function.Supplier;

import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* Whether to center between horizontal margins
@@ -73,16 +72,6 @@ public final class HCenterRecord extends StandardRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public HCenterRecord clone() {
return copy();
}

@Override
public HCenterRecord copy() {
return new HCenterRecord(this);

+ 0
- 11
src/java/org/apache/poi/hssf/record/IndexRecord.java View File

@@ -24,7 +24,6 @@ import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.IntList;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.RecordFormatException;
import org.apache.poi.util.Removal;

/**
* Occurs right after BOF, tells you where the DBCELL records are for a sheet Important for locating cells
@@ -141,16 +140,6 @@ public final class IndexRecord extends StandardRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public IndexRecord clone() {
return copy();
}

@Override
public IndexRecord copy() {
return new IndexRecord(this);

+ 0
- 11
src/java/org/apache/poi/hssf/record/LabelSSTRecord.java View File

@@ -22,7 +22,6 @@ import java.util.function.Supplier;

import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* Refers to a string in the shared string table and is a column value.
@@ -84,16 +83,6 @@ public final class LabelSSTRecord extends CellRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public LabelSSTRecord clone() {
return copy();
}

@Override
public LabelSSTRecord copy() {
return new LabelSSTRecord(this);

+ 0
- 11
src/java/org/apache/poi/hssf/record/ScenarioProtectRecord.java View File

@@ -24,7 +24,6 @@ import java.util.function.Supplier;

import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* I have no idea what a Scenario is or why on would want to protect it with the lamest "security" ever invented.
@@ -86,16 +85,6 @@ public final class ScenarioProtectRecord extends StandardRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public ScenarioProtectRecord clone() {
return copy();
}

public ScenarioProtectRecord copy() {
return new ScenarioProtectRecord(this);
}

+ 0
- 11
src/java/org/apache/poi/hssf/record/cf/IconMultiStateThreshold.java View File

@@ -20,7 +20,6 @@ package org.apache.poi.hssf.record.cf;
import org.apache.poi.common.Duplicatable;
import org.apache.poi.util.LittleEndianInput;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* Icon / Multi-State specific Threshold / value (CFVO),
@@ -65,16 +64,6 @@ public final class IconMultiStateThreshold extends Threshold implements Duplicat
return super.getDataLength() + 5;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings("squid:S2975")
@Deprecated
@Removal(version = "5.0.0")
public IconMultiStateThreshold clone() {
return copy();
}

@Override
public IconMultiStateThreshold copy() {
return new IconMultiStateThreshold(this);

+ 0
- 11
src/java/org/apache/poi/hssf/record/chart/AxisLineFormatRecord.java View File

@@ -25,7 +25,6 @@ import org.apache.poi.hssf.record.RecordInputStream;
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* The axis line format record defines the axis type details.
@@ -63,16 +62,6 @@ public final class AxisLineFormatRecord extends StandardRecord {
return sid;
}

/**
* @deprecated use {@link #copy()} instead
*/
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public AxisLineFormatRecord clone() {
return copy();
}

/**
* Get the axis type field for the AxisLineFormat record.
*

+ 0
- 12
src/java/org/apache/poi/hssf/record/chart/ChartStartBlockRecord.java View File

@@ -25,7 +25,6 @@ import org.apache.poi.hssf.record.RecordInputStream;
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.Removal;

/**
* STARTBLOCK - Chart Future Record Type Start Block (0x0852)
@@ -81,17 +80,6 @@ public final class ChartStartBlockRecord extends StandardRecord {
out.writeShort(iObjectInstance2);
}

/**
* @deprecated use {@link #copy()} instead
*/
@Override
@SuppressWarnings({"squid:S2975", "MethodDoesntCallSuperMethod"})
@Deprecated
@Removal(version = "5.0.0")
public ChartStartBlockRecord clone() {
return copy();
}

@Override
public ChartStartBlockRecord copy() {
return new ChartStartBlockRecord(this);

Loading…
Cancel
Save