Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 47476 invoked from network); 15 Mar 2009 18:27:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Mar 2009 18:27:09 -0000 Received: (qmail 8685 invoked by uid 500); 15 Mar 2009 18:27:08 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 8639 invoked by uid 500); 15 Mar 2009 18:27:08 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 8629 invoked by uid 99); 15 Mar 2009 18:27:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Mar 2009 11:27:08 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Mar 2009 18:27:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5F6BC238896B; Sun, 15 Mar 2009 18:26:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r754711 - /commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java Date: Sun, 15 Mar 2009 18:26:47 -0000 To: commits@commons.apache.org From: dfabulich@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090315182647.5F6BC238896B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dfabulich Date: Sun Mar 15 18:26:46 2009 New Revision: 754711 URL: http://svn.apache.org/viewvc?rev=754711&view=rev Log: Documenting explicitly that SqlNullCheckedResultSet is not thread-safe Modified: commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java Modified: commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java URL: http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java?rev=754711&r1=754710&r2=754711&view=diff ============================================================================== --- commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java (original) +++ commons/proper/dbutils/trunk/src/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java Sun Mar 15 18:26:46 2009 @@ -66,6 +66,7 @@ * * *

+ *

Unlike some other classes in DbUtils, this class is NOT thread-safe.

*/ public class SqlNullCheckedResultSet implements InvocationHandler {