Browse Source

remove unnecessary parens

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@450606 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 19 years ago
parent
commit
7f1c9c1617
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Concat.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Concat.java View File

@@ -252,7 +252,7 @@ public class Concat extends Task {
* @since Ant 1.7
*/
public void add(ResourceCollection c) {
rc = (rc == null) ? new Resources() : rc;
rc = rc == null ? new Resources() : rc;
rc.add(c);
}



Loading…
Cancel
Save