Author: antonio Date: Sun Oct 31 14:17:55 2004 New Revision: 56162 Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/scratchpad/java/org/apache/cocoon/transformation/BetwixtTransformer.java cocoon/branches/BRANCH_2_1_X/status.xml Log: BetwixtTransformer: removed deprecation warning with latest betwixt
Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/scratchpad/java/org/apache/cocoon/transformation/BetwixtTransformer.java ============================================================================== --- cocoon/branches/BRANCH_2_1_X/src/blocks/scratchpad/java/org/apache/cocoon/transformation/BetwixtTransformer.java (original) +++ cocoon/branches/BRANCH_2_1_X/src/blocks/scratchpad/java/org/apache/cocoon/transformation/BetwixtTransformer.java Sun Oct 31 14:17:55 2004 @@ -199,7 +199,7 @@ introspector = this.beanWriter.getXMLIntrospector(); introspector.setLog(new LogKitLogger("betwixt")); // The following is needed for EJB - introspector.setClassNormalizer(new ClassNormalizer() { + introspector.getConfiguration().setClassNormalizer(new ClassNormalizer() { public Class normalize(Class clazz) { if (Proxy.isProxyClass(clazz) && clazz.getInterfaces().length > 0) { @@ -238,4 +238,4 @@ } } -} \ No newline at end of file +} Modified: cocoon/branches/BRANCH_2_1_X/status.xml ============================================================================== --- cocoon/branches/BRANCH_2_1_X/status.xml (original) +++ cocoon/branches/BRANCH_2_1_X/status.xml Sun Oct 31 14:17:55 2004 @@ -199,6 +199,9 @@ <changes> <release version="@version@" date="@date@"> + <action dev="AG" type="fix" fixes-bug="29945" due-to="Christoph Gaffga" due-to-email="[EMAIL PROTECTED]"> + BetwixtTransformer: removed deprecation warning with latest betwixt + </action> <action dev="SW" type="fix" fixes-bug="25951"> Flowscript: enforce the explicit declaration of variables in the global scope (attached to the session). This avoids the implicit declaration of variables in the global scope when the 'var' keyword is missing,