Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 26590 invoked from network); 12 May 2008 19:11:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 May 2008 19:11:39 -0000 Received: (qmail 9227 invoked by uid 500); 12 May 2008 19:11:41 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 9162 invoked by uid 500); 12 May 2008 19:11:41 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 9151 invoked by uid 99); 12 May 2008 19:11:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 May 2008 12:11:41 -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; Mon, 12 May 2008 19:11:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8F7C12388A14; Mon, 12 May 2008 12:11:18 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r655604 - in /cxf/branches/2.0.x-fixes: ./ common/common/src/main/java/org/apache/cxf/common/util/CacheMap.java Date: Mon, 12 May 2008 19:11:18 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080512191118.8F7C12388A14@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon May 12 12:11:18 2008 New Revision: 655604 URL: http://svn.apache.org/viewvc?rev=655604&view=rev Log: Merged revisions 654925 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r654925 | bimargulies | 2008-05-09 16:08:46 -0400 (Fri, 09 May 2008) | 2 lines Add more comments. ........ Modified: cxf/branches/2.0.x-fixes/ (props changed) cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/CacheMap.java Propchange: cxf/branches/2.0.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/CacheMap.java URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/CacheMap.java?rev=655604&r1=655603&r2=655604&view=diff ============================================================================== --- cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/CacheMap.java (original) +++ cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/CacheMap.java Mon May 12 12:11:18 2008 @@ -37,7 +37,9 @@ * may reference the data keep the data in the cache. * * - * Note that this implementation is not synchronized. + * Note that this implementation is not synchronized. Not even a little. + * 'Read-only' operations can trigger internal modifications. If you share this + * class between threads, you must protect every operation. * */ public class CacheMap implements Map {