You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Dominique Devienne <dd...@gmail.com> on 2006/10/02 15:38:13 UTC

Re: svn commit: r450606 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java

> remove unnecessary parens
> -        rc = (rc == null) ? new Resources() : rc;
> +        rc = rc == null ? new Resources() : rc;

Do you really think it reads better? I personally refuse operator
precedence to rule my life ;-) --DD

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org