From jbosscache-commits at lists.jboss.org Wed Apr 23 09:32:58 2008 Content-Type: multipart/mixed; boundary="===============0677109081851622832==" MIME-Version: 1.0 From: jbosscache-commits at lists.jboss.org To: jbosscache-commits at lists.jboss.org Subject: [jbosscache-commits] JBoss Cache SVN: r5645 - core/trunk/src/main/java/org/jboss/cache/invocation. Date: Wed, 23 Apr 2008 09:32:58 -0400 Message-ID: --===============0677109081851622832== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: mircea.markus Date: 2008-04-23 09:32:58 -0400 (Wed, 23 Apr 2008) New Revision: 5645 Modified: core/trunk/src/main/java/org/jboss/cache/invocation/CacheInvocationDeleg= ate.java Log: JBCACHE-1222 - bug fixing - marshalling Modified: core/trunk/src/main/java/org/jboss/cache/invocation/CacheInvocati= onDelegate.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- core/trunk/src/main/java/org/jboss/cache/invocation/CacheInvocationDele= gate.java 2008-04-23 13:11:40 UTC (rev 5644) +++ core/trunk/src/main/java/org/jboss/cache/invocation/CacheInvocationDele= gate.java 2008-04-23 13:32:58 UTC (rev 5645) @@ -34,6 +34,7 @@ * * @author Manik Surtani (manik(a)jbo= ss.org) * @since 2.1.0 + * todo [mmarkus] consider renaming this as it does not look as an Delegat= e (rather as a facade) */ @SuppressWarnings("unchecked") public class CacheInvocationDelegate extends AbstractInvocationDeleg= ate implements CacheSPI @@ -117,11 +118,7 @@ = public void addInterceptor(ChainedInterceptor i, Class afterInterceptor) { - boolean added =3D invoker.addInterceptor(i, afterInterceptor); - if (added) - { - lifecycleManager.startManualComponents(); - } + invoker.addInterceptor(i, afterInterceptor); } = public List getInterceptorChain() --===============0677109081851622832==--