You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by rl...@apache.org on 2013/03/14 15:06:21 UTC

svn commit: r1456444 - in /oodt/trunk: CHANGES.txt workflow/src/main/java/org/apache/oodt/cas/workflow/engine/IterativeWorkflowProcessorThread.java

Author: rlaidlaw
Date: Thu Mar 14 14:06:21 2013
New Revision: 1456444

URL: http://svn.apache.org/r1456444
Log:
OODT-571: Added 'this' keyword to assignments in setWorkflowInst and setWaitforConditionSatisfy methods.

Modified:
    oodt/trunk/CHANGES.txt
    oodt/trunk/workflow/src/main/java/org/apache/oodt/cas/workflow/engine/IterativeWorkflowProcessorThread.java

Modified: oodt/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1456444&r1=1456443&r2=1456444&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Thu Mar 14 14:06:21 2013
@@ -2,6 +2,8 @@ Apache OODT Change Log
 ======================
 Release 0.6 - Current Development
 --------------------------------------------
+* OODT-571 Updated assignments in setWorkflowInst and setWaitforConditionSatisfy
+methods in IterativeWorkflowProcessorThread class (rlaidlaw)
 
 * OODT-574 RADiX POM Parent References (Arni Sumarlidason via mattmann)
 

Modified: oodt/trunk/workflow/src/main/java/org/apache/oodt/cas/workflow/engine/IterativeWorkflowProcessorThread.java
URL: http://svn.apache.org/viewvc/oodt/trunk/workflow/src/main/java/org/apache/oodt/cas/workflow/engine/IterativeWorkflowProcessorThread.java?rev=1456444&r1=1456443&r2=1456444&view=diff
==============================================================================
--- oodt/trunk/workflow/src/main/java/org/apache/oodt/cas/workflow/engine/IterativeWorkflowProcessorThread.java (original)
+++ oodt/trunk/workflow/src/main/java/org/apache/oodt/cas/workflow/engine/IterativeWorkflowProcessorThread.java Thu Mar 14 14:06:21 2013
@@ -397,7 +397,7 @@ public class IterativeWorkflowProcessorT
    *          The fWorkflowInst to set.
    */
   public void setWorkflowInst(WorkflowInstance workflowInst) {
-    workflowInst = workflowInst;
+    this.workflowInst = workflowInst;
   }
 
   /**
@@ -412,7 +412,7 @@ public class IterativeWorkflowProcessorT
    *          The waitForConditionSatisfy to set.
    */
   public void setWaitforConditionSatisfy(long waitforConditionSatisfy) {
-    waitForConditionSatisfy = waitforConditionSatisfy;
+    this.waitForConditionSatisfy = waitforConditionSatisfy;
   }
 
   /**