mirror of https://github.com/apache/poi.git
#62921 - Provide OOXMLLite alternative for Java 12+
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846849 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4d2bd9d57e
commit
4458a10d66
|
@ -81,7 +81,7 @@ under the License.
|
|||
user.language and user.country are required as we have locale-sensitive formatters
|
||||
-->
|
||||
<property name="testpattern" value="Test*"/> <!--note: this excludes BaseTest* -->
|
||||
<property name="POI.testdata.path" value="test-data"/>
|
||||
<property name="POI.testdata.path" location="test-data"/>
|
||||
<property name="java.awt.headless" value="true"/>
|
||||
<property name="additionaljar" value=""/>
|
||||
<propertyreset name="user.language" value="en"/>
|
||||
|
|
|
@ -206,7 +206,7 @@ public final class POIDataSamples {
|
|||
}
|
||||
File dataDir = new File(dataDirName, _moduleDir);
|
||||
if (!dataDir.exists()) {
|
||||
throw new RuntimeException("Data dir '" + _moduleDir + "' does not exist");
|
||||
throw new RuntimeException("Data dir '" + dataDir + "' does not exist");
|
||||
}
|
||||
// convert to canonical file, to make any subsequent error messages
|
||||
// clearer.
|
||||
|
|
Loading…
Reference in New Issue