Author: hlship
Date: Fri Feb 19 18:53:58 2010
New Revision: 911923

URL: http://svn.apache.org/viewvc?rev=911923&view=rev
Log:
Rewrite PersistWorker in terms of FieldValueConduit API

Modified:
    
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java

Modified: 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java?rev=911923&r1=911922&r2=911923&view=diff
==============================================================================
--- 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
 (original)
+++ 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
 Fri Feb 19 18:53:58 2010
@@ -582,7 +582,7 @@
         add(configuration, PageDetached.class, 
TransformConstants.CONTAINING_PAGE_DID_DETACH_SIGNATURE, "pageDetached");
 
         configuration.add("Retain", new RetainWorker());
-        configuration.add("Persist", new PersistWorker());
+        configuration.addInstance("Persist",  PersistWorker.class);
 
         configuration.addInstance("IncludeStylesheet", 
IncludeStylesheetWorker.class, "after:SetupRender");
         configuration


Reply via email to