From: Javen O'Neal Date: Mon, 2 Nov 2015 08:34:21 +0000 (+0000) Subject: whitespace X-Git-Tag: REL_3_14_BETA1~173 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a594b8a8ee9b15e6a6417298b1de73fb082d747f;p=poi.git whitespace git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711906 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java b/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java index d9dbfbfea6..61c93009d1 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java @@ -37,53 +37,51 @@ import org.apache.poi.xssf.usermodel.XSSFWorkbook; * @author Josh Micich */ public class XSSFTestDataSamples { - /** - * Used by {@link writeOutAndReadBack(R wb, String testName)}. If a - * value is set for this in the System Properties, the xlsx file - * will be written out to that directory. - */ - public static final String TEST_OUTPUT_DIR = "poi.test.xssf.output.dir"; + /** + * Used by {@link writeOutAndReadBack(R wb, String testName)}. If a + * value is set for this in the System Properties, the xlsx file + * will be written out to that directory. + */ + public static final String TEST_OUTPUT_DIR = "poi.test.xssf.output.dir"; - public static File getSampleFile(String sampleFileName) { - return HSSFTestDataSamples.getSampleFile(sampleFileName); - } - public static OPCPackage openSamplePackage(String sampleName) { - try { - return OPCPackage.open( - HSSFTestDataSamples.openSampleFileStream(sampleName) - ); - } catch(Exception e) { - throw new RuntimeException(e); - } - } - public static XSSFWorkbook openSampleWorkbook(String sampleName) { - InputStream is = HSSFTestDataSamples.openSampleFileStream(sampleName); - try { - return new XSSFWorkbook(is); - } catch (IOException e) { - throw new RuntimeException(e); - } - } + public static File getSampleFile(String sampleFileName) { + return HSSFTestDataSamples.getSampleFile(sampleFileName); + } + public static OPCPackage openSamplePackage(String sampleName) { + try { + return OPCPackage.open(HSSFTestDataSamples.openSampleFileStream(sampleName)); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + public static XSSFWorkbook openSampleWorkbook(String sampleName) { + InputStream is = HSSFTestDataSamples.openSampleFileStream(sampleName); + try { + return new XSSFWorkbook(is); + } catch (IOException e) { + throw new RuntimeException(e); + } + } public static R writeOutAndReadBack(R wb) { - Workbook result; - try { + Workbook result; + try { ByteArrayOutputStream baos = new ByteArrayOutputStream(8192); wb.write(baos); InputStream is = new ByteArrayInputStream(baos.toByteArray()); - if (wb instanceof HSSFWorkbook) { - result = new HSSFWorkbook(is); - } else if (wb instanceof XSSFWorkbook) { - result = new XSSFWorkbook(is); - } else { - throw new RuntimeException("Unexpected workbook type (" - + wb.getClass().getName() + ")"); - } - } catch (IOException e) { - throw new RuntimeException(e); - } - @SuppressWarnings("unchecked") - R r = (R) result; - return r; + if (wb instanceof HSSFWorkbook) { + result = new HSSFWorkbook(is); + } else if (wb instanceof XSSFWorkbook) { + result = new XSSFWorkbook(is); + } else { + throw new RuntimeException("Unexpected workbook type (" + + wb.getClass().getName() + ")"); + } + } catch (IOException e) { + throw new RuntimeException(e); + } + @SuppressWarnings("unchecked") + R r = (R) result; + return r; } /**