Skip to content

Commit 7908a7d

Browse files
committed
Fixing NPE
1 parent c35ec5c commit 7908a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exist-ant/src/main/java/org/exist/ant/XMLDBExtractTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private void extractResources(final Collection base, final String path) throws X
141141
if (resources != null) {
142142
Path dir = destDir;
143143

144-
log("Extracting to directory " + destFile.toAbsolutePath().toString(), Project.MSG_DEBUG);
144+
log("Extracting to directory " + destDir.toAbsolutePath().toString(), Project.MSG_DEBUG);
145145

146146
if (path != null) {
147147
dir = destDir.resolve(path);

0 commit comments

Comments
 (0)