From d6e8b3572bc8c8dfdf64dab963f746d0b46e5b1f Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Tue, 30 Oct 2007 10:24:51 +0000 Subject: [PATCH] Fix tab vs space issue in documentation code block git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@590024 13f79535-47bb-0310-9956-ffa450edef68 --- src/documentation/content/xdocs/hssf/quick-guide.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documentation/content/xdocs/hssf/quick-guide.xml b/src/documentation/content/xdocs/hssf/quick-guide.xml index 53a176e0b..ebc6753b0 100644 --- a/src/documentation/content/xdocs/hssf/quick-guide.xml +++ b/src/documentation/content/xdocs/hssf/quick-guide.xml @@ -240,7 +240,7 @@ ExcelExtractor class should provide all you need.

InputStream inp = new FileInputStream("workbook.xls"); - HSSFWorkbook wb = new HSSFWorkbook(new POIFSFileSystem(inp)); + HSSFWorkbook wb = new HSSFWorkbook(new POIFSFileSystem(inp)); ExcelExtractor extractor = new ExcelExtractor(wb); extractor.setFormulasNotResults(true);