diff --git a/src/main/org/apache/tools/ant/PropertyHelper.java b/src/main/org/apache/tools/ant/PropertyHelper.java index 670db09ef..2c7956405 100644 --- a/src/main/org/apache/tools/ant/PropertyHelper.java +++ b/src/main/org/apache/tools/ant/PropertyHelper.java @@ -951,7 +951,8 @@ public class PropertyHelper implements GetProperty { protected List getDelegates(Class type) { Hashtable curDelegates = delegates; return curDelegates.containsKey(type) - ? (List) new ArrayList((List) curDelegates.get(type)) : Collections.EMPTY_LIST; + ? (List) new ArrayList((List) curDelegates.get(type)) + : Collections.EMPTY_LIST; } /**