[jbosscache-commits] JBoss Cache SVN: r4869 - cache-bench-fwk/trunk/cache-products/terracotta-2.4.8/src/org/cachebench/cachewrappers.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Tue Dec 18 05:33:07 EST 2007


Author: bela at jboss.com
Date: 2007-12-18 05:33:07 -0500 (Tue, 18 Dec 2007)
New Revision: 4869

Modified:
   cache-bench-fwk/trunk/cache-products/terracotta-2.4.8/src/org/cachebench/cachewrappers/TerracottaWrapper.java
Log:
made map final

Modified: cache-bench-fwk/trunk/cache-products/terracotta-2.4.8/src/org/cachebench/cachewrappers/TerracottaWrapper.java
===================================================================
--- cache-bench-fwk/trunk/cache-products/terracotta-2.4.8/src/org/cachebench/cachewrappers/TerracottaWrapper.java	2007-12-18 03:55:14 UTC (rev 4868)
+++ cache-bench-fwk/trunk/cache-products/terracotta-2.4.8/src/org/cachebench/cachewrappers/TerracottaWrapper.java	2007-12-18 10:33:07 UTC (rev 4869)
@@ -16,7 +16,7 @@
 public class TerracottaWrapper implements CacheWrapper
 {
    // Since terracotta 
-   private Map cache = new HashMap();
+   private final Map cache = new HashMap();
 
    public void init(Properties parameters) throws Exception
    {




More information about the jbosscache-commits mailing list