Author: hlship
Date: Tue Jul 13 22:14:01 2010
New Revision: 963879

URL: http://svn.apache.org/viewvc?rev=963879&view=rev
Log:
TAP5-1197: Fix incorrect description of UnclaimedFieldWorker

Modified:
    
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java

Modified: 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java?rev=963879&r1=963878&r2=963879&view=diff
==============================================================================
--- 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java
 (original)
+++ 
tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java
 Tue Jul 13 22:14:01 2010
@@ -29,9 +29,8 @@ import org.apache.tapestry5.services.Com
 import org.apache.tapestry5.services.TransformField;
 
 /**
- * Designed to be just about the last worker in the pipeline. Its job is to 
add cleanup code that restores transient
- * fields back to their initial (null) value. Fields that have been previously 
{...@linkplain TransformField#claim(Object)
- * claimed} are ignored, as are fields that are final.suzy0613
+ * Designed to be just about the last worker in the pipeline. Its job is to 
convert each otherwise unclaimed
+ * field into a value stored in the {...@link PerthreadManager}.
  */
 public final class UnclaimedFieldWorker implements 
ComponentClassTransformWorker
 {
@@ -68,7 +67,7 @@ public final class UnclaimedFieldWorker 
 
             // This catches the case where the instance initializer method 
sets a value for the field.
             // That value is captured and used when no specific value has been 
stored.
-            
+
             if (!resources.isLoaded())
                 fieldDefaultValue = newValue;
         }


Reply via email to