Re: driver source code indentation

From: Rene Pijlman <rene(at)lab(dot)applinet(dot)nl>
To: <Dave(at)micro-automation(dot)net>
Cc: <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: driver source code indentation
Date: 2001-09-06 16:49:41
Message-ID: 47afptgrc59ltlso5ogs29i8r0m07ulkp4@4ax.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Thu, 6 Sep 2001 07:06:29 -0400, you wrote:
>Public int foo(int x,int y){
> x=y;
>}
>
>Turns into
>
>Public int foo( int x, int y )
>{
> x = y;
>}
>
>
>I find this easier to read.

I agree. This is my preference as well in Java.

Regards,
René Pijlman <rene(at)lab(dot)applinet(dot)nl>

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message chris markiewicz 2001-09-06 16:50:29 Re: error - NOTICE: current transaction...MORE DETAIL...
Previous Message Rene Pijlman 2001-09-06 16:48:27 Re: driver source code indentation