]> source.dussan.org Git - poi.git/commitdiff
remove some deprecated code
authorPJ Fanning <fanningpj@apache.org>
Wed, 9 Dec 2020 00:18:22 +0000 (00:18 +0000)
committerPJ Fanning <fanningpj@apache.org>
Wed, 9 Dec 2020 00:18:22 +0000 (00:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884227 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/DBCellRecord.java
src/java/org/apache/poi/hssf/record/FileSharingRecord.java
src/java/org/apache/poi/hssf/record/HCenterRecord.java
src/java/org/apache/poi/hssf/record/IndexRecord.java
src/java/org/apache/poi/hssf/record/LabelSSTRecord.java
src/java/org/apache/poi/hssf/record/ScenarioProtectRecord.java
src/java/org/apache/poi/hssf/record/cf/IconMultiStateThreshold.java
src/java/org/apache/poi/hssf/record/chart/AxisLineFormatRecord.java
src/java/org/apache/poi/hssf/record/chart/ChartStartBlockRecord.java

index f041d4dd96a072b6ef66a596ea92158c58614224..15938de26b1ee16fca095b9e6a36cc722cc976d0 100644 (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
index d534e7167da64680d15a2741522d04d8970288da..4249e72a83455653d91d6653a6af6fe0a8a6ecb9 100644 (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);
index 2bb7193942f4ffcb8e2a7664dc7f55258355fdd7..37ee0ff63f3b789c08085b40374c08677d67000e 100644 (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);
index 7ebe0ac7e612dbe037f9fd261ab21badb4a9cb28..dd7772c8458baa55a60aff0efc62bc82876cca08 100644 (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);
index 50889ce7063c2bdd9e80d9985d4bff53bb1722dd..1872845f8eafc00ea589e44f19e5d840e7f15c10 100644 (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);
index 0a63b88d6cd107e427dfa189863c8e77a80be80d..8e718cc1d3399dac5e706d6f7768064dfd3ec477 100644 (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);
     }
index 6ee8e8ef6957e226817e29d4daa953124f06ee49..3b1c8f87c8eef7271bb94df46f82db24b8ad4781 100644 (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);
index 9d5a3592060541d271e6c099940518250294b188..26e669d46fa4625d3f5f398146860774436c2a40 100644 (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.
      *
index f03ad4d7b908923a46d1862ff49da7a57e51befb..6e9601e09a323fee0c718379ec0e23eab846f422 100644 (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);