diff --git a/src/main/org/apache/tools/ant/types/Path.java b/src/main/org/apache/tools/ant/types/Path.java index bde927280..8bdfd0b23 100644 --- a/src/main/org/apache/tools/ant/types/Path.java +++ b/src/main/org/apache/tools/ant/types/Path.java @@ -181,6 +181,7 @@ public class Path { * Append the contents of the other Path instance to this. */ public void append(Path other) { + if (other == null) return; String[] l = other.list(); for (int i=0; i