:) I am accustomed to other people not seeing things the way I do. The absence of the parentheses
doesn't bother me, and satisfies my, again, pointless, desire to eliminate as many non-essential
characters as possible. I have no problem putting these back if it makes everyone else happier
than it makes me to remove them; I just haven't done it yet. ;)
-Matt
----- Original Message ----
From: Dominique Devienne <ddevienne@gmail.com>
To: Ant Developers List <dev@ant.apache.org>
Sent: Monday, October 2, 2006 8:38:13 AM
Subject: 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
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|