You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2011/09/24 09:49:23 UTC

svn commit: r1175124 - /ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java

Author: jleroux
Date: Sat Sep 24 07:49:23 2011
New Revision: 1175124

URL: http://svn.apache.org/viewvc?rev=1175124&view=rev
Log:
A patch from Deepak Dixit "Fixed typo in ProductionRun class." https://issues.apache.org/jira/browse/OFBIZ-4434


Modified:
    ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java

Modified: ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java?rev=1175124&r1=1175123&r2=1175124&view=diff
==============================================================================
--- ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java (original)
+++ ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java Sat Sep 24 07:49:23 2011
@@ -39,7 +39,7 @@ import org.ofbiz.service.LocalDispatcher
 
 
 /**
- * ProductionRun Object used by the Jobshop management OFBiz comonents,
+ * ProductionRun Object used by the Jobshop management OFBiz components,
  * this object is used to find or updated an existing ProductionRun.
  *
  */
@@ -64,7 +64,7 @@ public class ProductionRun {
 
     /**
      * indicate if quantity or estimatedStartDate has been modified and
-     *  estimatedCompletionDate not yet recalculated with recalculateEstimatedCompletionDate() methode.
+     *  estimatedCompletionDate not yet recalculated with recalculateEstimatedCompletionDate() method.
      */
     private boolean updateCompletionDate = false;
     /**
@@ -274,7 +274,7 @@ public class ProductionRun {
         }
     }
     /**
-     * call recalculateEstimatedCompletionDate(0,estimatedStartDate), so recalculated for all the routingtask.
+     * call recalculateEstimatedCompletionDate(0,estimatedStartDate), so recalculated for all the routing tasks.
      */
     public Timestamp recalculateEstimatedCompletionDate() {
         this.updateCompletionDate = false;
@@ -382,7 +382,7 @@ public class ProductionRun {
 
     /**
      * clear list of all the productionRunRoutingTasks to force re-reading at the next need.
-     * This methode is used when the routingTasks ordering is changed.
+     * This method is used when the routingTasks ordering is changed.
      **/
     public void clearRoutingTasksList() {
         this.productionRunRoutingTasks = null;