diff options
author | Javen O'Neal <onealj@apache.org> | 2016-06-15 02:48:23 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2016-06-15 02:48:23 +0000 |
commit | 4bebb8f816ddbdb7556109b4944b0180cfba74b4 (patch) | |
tree | 41a322fb77834e484b607c799f8a17560b383cd0 /src/java/org | |
parent | 39a4223b2cbbce2ea96b717e19539007ab582f09 (diff) | |
download | poi-4bebb8f816ddbdb7556109b4944b0180cfba74b4.tar.gz poi-4bebb8f816ddbdb7556109b4944b0180cfba74b4.zip |
bug 59170: remove deprecated methods in o.a.p.hpsf.wellknown.SectionIDMap
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748481 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/poi/hpsf/wellknown/SectionIDMap.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/java/org/apache/poi/hpsf/wellknown/SectionIDMap.java b/src/java/org/apache/poi/hpsf/wellknown/SectionIDMap.java index 53a8b9bb00..e71c9e87b7 100644 --- a/src/java/org/apache/poi/hpsf/wellknown/SectionIDMap.java +++ b/src/java/org/apache/poi/hpsf/wellknown/SectionIDMap.java @@ -145,19 +145,6 @@ public class SectionIDMap extends HashMap { } /** - * <p>Returns the {@link PropertyIDMap} for a given section format - * ID.</p> - * - * @param sectionFormatID A section format ID as a <tt>byte[]</tt> . - * @deprecated Use {@link #get(byte[])} instead! - * @return the property ID map - */ - public PropertyIDMap get(final Object sectionFormatID) - { - return get((byte[]) sectionFormatID); - } - - /** * <p>Associates a section format ID with a {@link * PropertyIDMap}.</p> * @@ -178,23 +165,4 @@ public class SectionIDMap extends HashMap { protected PropertyIDMap put(String key, PropertyIDMap value) { return (PropertyIDMap)super.put(key, value); } - - /** - * @deprecated Use {@link #put(byte[], PropertyIDMap)} instead! - * - * @see #put(byte[], PropertyIDMap) - * - * @param key This parameter remains undocumented since the method is - * deprecated. - * @param value This parameter remains undocumented since the method is - * deprecated. - * @return The return value remains undocumented since the method is - * deprecated. - */ - public PropertyIDMap put(final Object key, final Object value) - { - if (key instanceof String) - return put((String)key, (PropertyIDMap) value); - return put((byte[]) key, (PropertyIDMap) value); - } } |