remove unused method
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1147391 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f18e5fb8e2
commit
8751c669de
@ -20,7 +20,6 @@ import java.io.File;
|
|||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.lang.reflect.Constructor;
|
|
||||||
|
|
||||||
import org.apache.poi.hwpf.HWPFDocument;
|
import org.apache.poi.hwpf.HWPFDocument;
|
||||||
import org.apache.poi.hwpf.HWPFDocumentCore;
|
import org.apache.poi.hwpf.HWPFDocumentCore;
|
||||||
@ -30,8 +29,6 @@ import org.apache.poi.hwpf.model.ListLevel;
|
|||||||
import org.apache.poi.hwpf.model.ListTables;
|
import org.apache.poi.hwpf.model.ListTables;
|
||||||
import org.apache.poi.hwpf.usermodel.BorderCode;
|
import org.apache.poi.hwpf.usermodel.BorderCode;
|
||||||
import org.apache.poi.hwpf.usermodel.Paragraph;
|
import org.apache.poi.hwpf.usermodel.Paragraph;
|
||||||
import org.apache.poi.hwpf.usermodel.Range;
|
|
||||||
import org.apache.poi.hwpf.usermodel.TableIterator;
|
|
||||||
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
||||||
import org.apache.poi.util.IOUtils;
|
import org.apache.poi.util.IOUtils;
|
||||||
|
|
||||||
@ -274,21 +271,6 @@ public class AbstractWordUtils
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TableIterator newTableIterator( Range range, int level )
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Constructor<TableIterator> constructor = TableIterator.class
|
|
||||||
.getDeclaredConstructor( Range.class, int.class );
|
|
||||||
constructor.setAccessible( true );
|
|
||||||
return constructor.newInstance( range, Integer.valueOf( level ) );
|
|
||||||
}
|
|
||||||
catch ( Exception exc )
|
|
||||||
{
|
|
||||||
throw new Error( exc );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static String substringBeforeLast( String str, String separator )
|
static String substringBeforeLast( String str, String separator )
|
||||||
{
|
{
|
||||||
if ( isEmpty( str ) || isEmpty( separator ) )
|
if ( isEmpty( str ) || isEmpty( separator ) )
|
||||||
|
Loading…
Reference in New Issue
Block a user