diff --git a/src/java/org/apache/poi/hssf/record/RecordFactory.java b/src/java/org/apache/poi/hssf/record/RecordFactory.java index ec034d3fc..2336999b1 100644 --- a/src/java/org/apache/poi/hssf/record/RecordFactory.java +++ b/src/java/org/apache/poi/hssf/record/RecordFactory.java @@ -90,12 +90,12 @@ public final class RecordFactory { throw new RuntimeException(e); } catch (InvocationTargetException e) { Throwable t = e.getTargetException(); - if (t instanceof RecordFormatException) { - throw (RecordFormatException)t; + if (t instanceof org.apache.poi.util.RecordFormatException) { + throw (org.apache.poi.util.RecordFormatException)t; } else if (t instanceof EncryptedDocumentException) { throw (EncryptedDocumentException)t; } else { - throw new RecordFormatException("Unable to construct record instance" , t); + throw new org.apache.poi.util.RecordFormatException("Unable to construct record instance" , t); } } } @@ -123,7 +123,7 @@ public final class RecordFactory { } catch (IllegalAccessException e) { throw new RuntimeException(e); } catch (InvocationTargetException e) { - throw new RecordFormatException("Unable to construct record instance" , e.getTargetException()); + throw new org.apache.poi.util.RecordFormatException("Unable to construct record instance" , e.getTargetException()); } } @Override @@ -443,7 +443,7 @@ public final class RecordFactory { try { sid = recClass.getField("sid").getShort(null); } catch (Exception illegalArgumentException) { - throw new RecordFormatException( + throw new org.apache.poi.util.RecordFormatException( "Unable to determine record types"); } Integer key = Integer.valueOf(sid); @@ -482,9 +482,9 @@ public final class RecordFactory { * * @return an array of Records created from the InputStream * - * @exception RecordFormatException on error processing the InputStream + * @exception org.apache.poi.util.RecordFormatException on error processing the InputStream */ - public static List createRecords(InputStream in) throws RecordFormatException { + public static List createRecords(InputStream in) throws org.apache.poi.util.RecordFormatException { List records = new ArrayList(NUM_RECORDS); diff --git a/src/java/org/apache/poi/hssf/record/aggregates/ConditionalFormattingTable.java b/src/java/org/apache/poi/hssf/record/aggregates/ConditionalFormattingTable.java index 93bae37d9..cfbd36995 100644 --- a/src/java/org/apache/poi/hssf/record/aggregates/ConditionalFormattingTable.java +++ b/src/java/org/apache/poi/hssf/record/aggregates/ConditionalFormattingTable.java @@ -51,8 +51,7 @@ public final class ConditionalFormattingTable extends RecordAggregate { } public void visitContainedRecords(RecordVisitor rv) { - for (int i = 0; i < _cfHeaders.size(); i++) { - CFRecordsAggregate subAgg = _cfHeaders.get(i); + for (CFRecordsAggregate subAgg : _cfHeaders) { subAgg.visitContainedRecords(rv); } } diff --git a/src/testcases/org/apache/poi/ss/format/TestCellFormatCondition.java b/src/testcases/org/apache/poi/ss/format/TestCellFormatCondition.java index f1ede1193..1a56b824a 100644 --- a/src/testcases/org/apache/poi/ss/format/TestCellFormatCondition.java +++ b/src/testcases/org/apache/poi/ss/format/TestCellFormatCondition.java @@ -17,7 +17,6 @@ package org.apache.poi.ss.format; import junit.framework.TestCase; -import org.apache.poi.ss.format.CellFormatCondition; public class TestCellFormatCondition extends TestCase { public void testSVConditions() {