]> source.dussan.org Git - poi.git/commitdiff
bug 59170: remove deprecated o.a.p.hwpf.usermodel.ListEntry constructor and method
authorJaven O'Neal <onealj@apache.org>
Fri, 17 Jun 2016 01:24:38 +0000 (01:24 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 17 Jun 2016 01:24:38 +0000 (01:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748787 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/usermodel/ListEntry.java

index 378c26c90ee45745201ed7b40c1bd8544626567c..d7158fac75f36d03e08db63f498e6b7479b09ced 100644 (file)
@@ -17,7 +17,6 @@
 
 package org.apache.poi.hwpf.usermodel;
 
-import org.apache.poi.hwpf.model.ListTables;
 import org.apache.poi.hwpf.model.PAPX;
 import org.apache.poi.util.Internal;
 
@@ -28,16 +27,4 @@ public final class ListEntry extends Paragraph
     {
         super( papx, properties, parent );
     }
-
-    @Deprecated
-    ListEntry( PAPX papx, Range parent, ListTables tables )
-    {
-        super( papx, parent );
-    }
-
-    @Deprecated
-    public int type()
-    {
-        return TYPE_LISTENTRY;
-    }
 }