Re: Helping application programmers catch threading bugs

From: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>
To: <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Helping application programmers catch threading bugs
Date: 2009-04-13 18:03:50
Message-ID: 49E33836.EE98.0025.0@wicourts.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

I wrote:
> if (useCount-- == 0)

Of course that should be:

if (--useCount == 0)

-Kevin

Browse pgsql-jdbc by date

  From Date Subject
Next Message Kris Jurka 2009-04-14 03:34:43 Re: Helping application programmers catch threading bugs
Previous Message Guy Rouillier 2009-04-13 17:51:51 Re: Can't get JDBC to compile. Please help.