bug 59170: remove deprecated o.a.p.hwpf.usermodel.ListEntry constructor and method

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-17 01:24:38 +00:00
parent 06b4103cb0
commit e28a8789f3

View 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;
}
}