Return-Path: Mailing-List: contact ojb-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ojb-dev@jakarta.apache.org Received: (qmail 16516 invoked by uid 97); 24 Dec 2002 13:06:51 -0000 Received: (qmail 16512 invoked by uid 98); 24 Dec 2002 13:06:51 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Received: (qmail 16493 invoked from network); 24 Dec 2002 13:06:49 -0000 Received: from daedalus.apache.org (HELO apache.org) (63.251.56.142) by nagoya.betaversion.org with SMTP; 24 Dec 2002 13:06:49 -0000 Received: (qmail 85605 invoked by uid 500); 24 Dec 2002 13:05:37 -0000 Received: (qmail 85593 invoked from network); 24 Dec 2002 13:05:37 -0000 Received: from icarus.apache.org (63.251.56.143) by daedalus.apache.org with SMTP; 24 Dec 2002 13:05:37 -0000 Received: (qmail 92746 invoked by uid 1510); 24 Dec 2002 13:05:36 -0000 Date: 24 Dec 2002 13:05:36 -0000 Message-ID: <20021224130536.92745.qmail@icarus.apache.org> From: arminw@apache.org To: jakarta-ojb-cvs@apache.org Subject: cvs commit: jakarta-ojb/src/java/org/apache/ojb/broker/cache ObjectCacheFactory.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N arminw 2002/12/24 05:05:36 Modified: src/java/org/apache/ojb/broker/cache ObjectCacheFactory.java Log: fix javadoc Revision Changes Path 1.9 +8 -8 jakarta-ojb/src/java/org/apache/ojb/broker/cache/ObjectCacheFactory.java Index: ObjectCacheFactory.java =================================================================== RCS file: /home/cvs/jakarta-ojb/src/java/org/apache/ojb/broker/cache/ObjectCacheFactory.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ObjectCacheFactory.java 8 Nov 2002 13:29:29 -0000 1.8 +++ ObjectCacheFactory.java 24 Dec 2002 13:05:36 -0000 1.9 @@ -63,25 +63,25 @@ public class ObjectCacheFactory extends ConfigurableFactory { - + private static ObjectCacheFactory INSTANCE = null; - + private ObjectCache CACHE = null; - + public static ObjectCacheFactory getInstance() { if (INSTANCE == null) { - INSTANCE = new ObjectCacheFactory(); + INSTANCE = new ObjectCacheFactory(); } - return INSTANCE; + return INSTANCE; } public ObjectCache getObjectCache() { if (CACHE == null) { - synchronized (this) + synchronized (this) { try { @@ -99,7 +99,7 @@ } /** - * @see org.apache.ojb.broker.cache.AbtractConfigurableFactory#getConfigurationKey() + * @see org.apache.ojb.broker.util.factory.ConfigurableFactory#getConfigurationKey() */ protected String getConfigurationKey() {