Little tweak to the imports to keep things more consistent with 3.1

git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@686235 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2008-08-15 14:28:56 +00:00
parent e9b81df1f1
commit 0fc8b651ff
2 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ import org.apache.poi.hssf.record.aggregates.PageSettingsBlock;
import org.apache.poi.hssf.record.aggregates.RecordAggregate;
import org.apache.poi.hssf.record.aggregates.RowRecordsAggregate;
import org.apache.poi.hssf.record.aggregates.RecordAggregate.RecordVisitor;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.hssf.util.CellRangeAddress;
import org.apache.poi.hssf.util.PaneInformation;
import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger;

View File

@ -641,8 +641,8 @@ public class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet
/**
* @return the merged region at the specified index
*/
public CellRangeAddress getMergedRegion(int index) {
return (CellRangeAddress)sheet.getMergedRegionAt(index);
public org.apache.poi.hssf.util.CellRangeAddress getMergedRegion(int index) {
return sheet.getMergedRegionAt(index);
}
/**