[cvs]
expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/cache
DefaultCacheManager.java
JCorporate Ltd
jcorp at jcorp2.servlets.net
Sat May 22 10:39:01 PDT 2004
Update of /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/cache
In directory jcorp2.servlets.net:/tmp/cvs-serv3263/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/cache
Modified Files:
DefaultCacheManager.java
Log Message:
pmd: Variables should start with a lowercase character
Index: DefaultCacheManager.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/core/cache/DefaultCacheManager.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** DefaultCacheManager.java 6 May 2004 09:15:22 -0000 1.10
--- DefaultCacheManager.java 22 May 2004 17:38:59 -0000 1.11
***************
*** 486,493 ****
*/
public Cache createCache(String cacheName, boolean ordered, int maxSize) throws CacheException {
! Cache ExistingCache = this.getCache(cacheName, false);
! if (ExistingCache != null) {
/* it's already there - never mind! */
! return ExistingCache;
}
--- 486,493 ----
*/
public Cache createCache(String cacheName, boolean ordered, int maxSize) throws CacheException {
! Cache existingCache = this.getCache(cacheName, false);
! if (existingCache != null) {
/* it's already there - never mind! */
! return existingCache;
}
More information about the cvs
mailing list