diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-12-09 17:35:29 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-12-09 17:35:29 +0000 |
commit | 78596d7891bfb8a524fe9991c2ab3b3e6d66a2ad (patch) | |
tree | 28d7025b041d85117eca207231f60c557cffbe56 /src/java/org/apache/poi/ddf/EscherComplexProperty.java | |
parent | c1f5d62c35593024c9cd2f6b66d32b023170dbe9 (diff) | |
download | poi-78596d7891bfb8a524fe9991c2ab3b3e6d66a2ad.tar.gz poi-78596d7891bfb8a524fe9991c2ab3b3e6d66a2ad.zip |
remove more deprecated code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884262 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ddf/EscherComplexProperty.java')
-rw-r--r-- | src/java/org/apache/poi/ddf/EscherComplexProperty.java | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/java/org/apache/poi/ddf/EscherComplexProperty.java b/src/java/org/apache/poi/ddf/EscherComplexProperty.java index fc8e75b978..1f33cd735a 100644 --- a/src/java/org/apache/poi/ddf/EscherComplexProperty.java +++ b/src/java/org/apache/poi/ddf/EscherComplexProperty.java @@ -24,7 +24,6 @@ import java.util.function.Supplier; import org.apache.poi.util.GenericRecordUtil; import org.apache.poi.util.IOUtils; import org.apache.poi.util.LittleEndian; -import org.apache.poi.util.Removal; /** * A complex property differs from a simple property in that the data can not fit inside a 32 bit @@ -39,40 +38,6 @@ public class EscherComplexProperty extends EscherProperty { /** * Create a complex property using the property id and a byte array containing the complex - * data value. - * - * @param id The id consists of the property number, a flag indicating whether this is a blip id and a flag - * indicating that this is a complex property. - * @param complexData The value of this property. - * - * @deprecated use {@link #EscherComplexProperty(short, int)} and {@link #setComplexData(byte[])} instead - */ - @Deprecated - @Removal(version = "5.0.0") - public EscherComplexProperty(short id, byte[] complexData) { - this(id, complexData == null ? 0 : complexData.length); - setComplexData(complexData); - } - - /** - * Create a complex property using the property number, a flag to indicate whether this is a - * blip reference and the complex property data. - * - * @param propertyNumber The property number - * @param isBlipId Whether this is a blip id. Should be false. - * @param complexData The value of this complex property. - * - * @deprecated use {@link #EscherComplexProperty(EscherPropertyTypes, boolean, int)} and {@link #setComplexData(byte[])} instead - */ - @Deprecated - @Removal(version = "5.0.0") - public EscherComplexProperty(short propertyNumber, boolean isBlipId, byte[] complexData) { - this(propertyNumber, isBlipId, complexData == null ? 0 : complexData.length); - setComplexData(complexData); - } - - /** - * Create a complex property using the property id and a byte array containing the complex * data value size. * * @param id The id consists of the property number, a flag indicating whether this is a blip id and a flag |