From 2876f4167a83887ab34d2b46e0aef568798b271a Mon Sep 17 00:00:00 2001 From: Yegor Kozlov Date: Mon, 28 Jun 2010 12:52:00 +0000 Subject: [PATCH] removed duplicates of PICTURE_TYPE_* constants defined in the parent Workbook interface git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@958561 13f79535-47bb-0310-9956-ffa450edef68 --- build.xml | 6 ------ .../apache/poi/hssf/usermodel/HSSFWorkbook.java | 15 --------------- 2 files changed, 21 deletions(-) diff --git a/build.xml b/build.xml index cf73e6275..e51c49d65 100644 --- a/build.xml +++ b/build.xml @@ -136,8 +136,6 @@ under the License. - @@ -341,10 +339,6 @@ under the License. - - - - diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java b/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java index 97e534be2..141f1a9db 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java @@ -146,21 +146,6 @@ public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss */ private MissingCellPolicy missingCellPolicy = HSSFRow.RETURN_NULL_AND_BLANK; - - /** Extended windows meta file */ - public static final int PICTURE_TYPE_EMF = 2; - /** Windows Meta File */ - public static final int PICTURE_TYPE_WMF = 3; - /** Mac PICT format */ - public static final int PICTURE_TYPE_PICT = 4; - /** JPEG format */ - public static final int PICTURE_TYPE_JPEG = 5; - /** PNG format */ - public static final int PICTURE_TYPE_PNG = 6; - /** Device independant bitmap */ - public static final int PICTURE_TYPE_DIB = 7; - - private static POILogger log = POILogFactory.getLogger(HSSFWorkbook.class); public static HSSFWorkbook create(InternalWorkbook book) {