From 2688ce9d8236dba6dd9c3962471fb17a417c142c Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 28 Feb 2018 10:30:05 +0000 Subject: [PATCH] fix license check failure git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1825547 13f79535-47bb-0310-9956-ffa450edef68 --- build.xml | 58 +++++++++---------- .../examples/BarChartExampleDOCX.java | 2 +- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/build.xml b/build.xml index 242b2513a..670585b73 100644 --- a/build.xml +++ b/build.xml @@ -2046,46 +2046,46 @@ under the License. - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - + + + - + - - ${rat.reportcontent} + + ${rat.reportcontent} - - + + diff --git a/src/examples/src/org/apache/poi/xwpf/usermodel/examples/BarChartExampleDOCX.java b/src/examples/src/org/apache/poi/xwpf/usermodel/examples/BarChartExampleDOCX.java index efc5a70f8..6d73c8722 100644 --- a/src/examples/src/org/apache/poi/xwpf/usermodel/examples/BarChartExampleDOCX.java +++ b/src/examples/src/org/apache/poi/xwpf/usermodel/examples/BarChartExampleDOCX.java @@ -71,7 +71,7 @@ public class BarChartExampleDOCX { // set model String ln; - while((ln = modelReader.readLine()) != null){ + while((ln = modelReader.readLine()) != null) { String[] vals = ln.split("\\s+"); listCategories.add(vals[0]); listValues.add(Double.valueOf(vals[1]));