Author: dereed
Date: 2009-06-03 12:45:08 -0400 (Wed, 03 Jun 2009)
New Revision: 8082
Modified:
core/branches/1.4.X/src/org/jboss/cache/TreeCache.java
Log:
[JBCACHE-1511] In invalidateRegion, instead of using marshaller_ directly, use the helper
function that initializes it first if needed.
Modified: core/branches/1.4.X/src/org/jboss/cache/TreeCache.java
===================================================================
--- core/branches/1.4.X/src/org/jboss/cache/TreeCache.java 2009-06-02 17:37:45 UTC (rev
8081)
+++ core/branches/1.4.X/src/org/jboss/cache/TreeCache.java 2009-06-03 16:45:08 UTC (rev
8082)
@@ -2364,9 +2364,9 @@
activationChangeNodes.add(fqn);
}
- boolean inactive = marshaller_.isInactive(subtreeFqn);
+ boolean inactive = getMarshaller().isInactive(subtreeFqn);
if (!inactive)
- marshaller_.inactivate(subtreeFqn);
+ getMarshaller().inactivate(subtreeFqn);
// Create a list with the Fqn in the main tree and any buddy backup trees
ArrayList list = new ArrayList();