From 6c351cad1d720cfb49cdb97558349296182e1ccc Mon Sep 17 00:00:00 2001 From: Sergey Vladimirov Date: Sat, 16 Jul 2011 09:26:29 +0000 Subject: [PATCH] remove unused method git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1147391 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/hwpf/converter/AbstractWordUtils.java | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordUtils.java b/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordUtils.java index c50b119bd6..1e55f36beb 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordUtils.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordUtils.java @@ -20,7 +20,6 @@ import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; -import java.lang.reflect.Constructor; import org.apache.poi.hwpf.HWPFDocument; 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.usermodel.BorderCode; 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.util.IOUtils; @@ -95,7 +92,7 @@ public class AbstractWordUtils return "solid"; } } - + public static String getBorderWidth( BorderCode borderCode ) { int lineWidth = borderCode.getLineWidth(); @@ -274,21 +271,6 @@ public class AbstractWordUtils } } - public static TableIterator newTableIterator( Range range, int level ) - { - try - { - Constructor 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 ) { if ( isEmpty( str ) || isEmpty( separator ) ) -- 2.39.5