From 979cf1d7ca80e0af7e3fb5bdb4dc1679ffd15219 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 19 Aug 2008 15:25:54 +0000 Subject: [PATCH] whitespace git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@687077 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/PropertyHelper.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } /**