Author: aogburn
Date: 2013-04-15 13:01:44 -0400 (Mon, 15 Apr 2013)
New Revision: 2184
Modified:
branches/JBOSSWEB_2_1_10_GA_JBPAPP-10706/java/org/apache/el/util/ConcurrentCache.java
Log:
[JBPAPP-10706] commit changes
Modified:
branches/JBOSSWEB_2_1_10_GA_JBPAPP-10706/java/org/apache/el/util/ConcurrentCache.java
===================================================================
---
branches/JBOSSWEB_2_1_10_GA_JBPAPP-10706/java/org/apache/el/util/ConcurrentCache.java 2013-04-15
16:50:26 UTC (rev 2183)
+++
branches/JBOSSWEB_2_1_10_GA_JBPAPP-10706/java/org/apache/el/util/ConcurrentCache.java 2013-04-15
17:01:44 UTC (rev 2184)
@@ -22,7 +22,7 @@
V v = this.eden.get(k);
if (v == null) {
synchronized (longterm) {
- value = this.longterm.get(key);
+ v = this.longterm.get(k);
}
if (v != null) {
this.eden.put(k, v);
Show replies by date