Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 96688 invoked from network); 11 Sep 2000 03:13:02 -0000 Received: from unknown (HELO smtp.cortexebusiness.com.au) (210.8.213.130) by locus.apache.org with SMTP; 11 Sep 2000 03:13:02 -0000 Received: (from daemon@localhost) by smtp.cortexebusiness.com.au (8.10.0/8.10.0) id e8B3CxN12286 for ; Mon, 11 Sep 2000 14:12:59 +1100 (EST) Received: from monkey(192.168.1.8), claiming to be "monkey.prod.thespot.com.au" via SMTP by ripley.devl.ebinteractive.com.au, id smtpdAAAbkaq.x; Mon Sep 11 14:12:50 2000 Received: (from daemon@localhost) by monkey.prod.thespot.com.au (8.10.0/8.10.0) id e8B3DSk05573 for ; Mon, 11 Sep 2000 14:13:28 +1100 (EST) Received: from UNKNOWN(192.168.1.9), claiming to be "chunky.devl.ebinteractive.com.au" via SMTP by monkey, id smtpdAAAW9aW3k; Mon Sep 11 13:13:22 2000 Received: from snotty (snotty.devl.ebinteractive.com.au [192.168.1.32]) by chunky.devl.ebinteractive.com.au (8.10.0/8.10.0) with SMTP id e8B3ChT06214 for ; Mon, 11 Sep 2000 14:12:43 +1100 (EST) From: "Conor MacNeill" To: Subject: RE: Proposed way to make ${} happen at runtime Date: Mon, 11 Sep 2000 14:13:54 +1100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal In-Reply-To: X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N Barrie, > From: Barrie Treloar [mailto:Barrie.Treloar@camtech.com.au] > > My only comment is: Is there any coding standard for Jakarta projects? > I'm just being nit picky on the use of {} for all if/else statements > even if they are one line bodies. > The Jakarta projects are supposed to follow the Sun coding standard which states Note: if statements always use braces {}. Avoid the following error-prone form: if (condition) //AVOID! THIS OMITS THE BRACES {}! statement; Personally, I agree with this convention but not with others in that document. Cheers Conor (hoping to avoid a brace war :-)