Browse Source

whitespace

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@687077 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 17 years ago
parent
commit
979cf1d7ca
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/main/org/apache/tools/ant/PropertyHelper.java

+ 2
- 1
src/main/org/apache/tools/ant/PropertyHelper.java View File

@@ -951,7 +951,8 @@ public class PropertyHelper implements GetProperty {
protected List getDelegates(Class type) { protected List getDelegates(Class type) {
Hashtable curDelegates = delegates; Hashtable curDelegates = delegates;
return curDelegates.containsKey(type) return curDelegates.containsKey(type)
? (List) new ArrayList((List) curDelegates.get(type)) : Collections.EMPTY_LIST;
? (List) new ArrayList((List) curDelegates.get(type))
: Collections.EMPTY_LIST;
} }


/** /**


Loading…
Cancel
Save