You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Vinod K V (JIRA)" <ji...@apache.org> on 2008/09/19 15:18:46 UTC

[jira] Created: (HADOOP-4221) TaskTracker.launchTaskForJob can be moved out of TaskTracker.localizeJob for better readability.

TaskTracker.launchTaskForJob can be moved out of TaskTracker.localizeJob for better readability.
------------------------------------------------------------------------------------------------

                 Key: HADOOP-4221
                 URL: https://issues.apache.org/jira/browse/HADOOP-4221
             Project: Hadoop Core
          Issue Type: Improvement
            Reporter: Vinod K V
            Priority: Trivial


The following is better readable than what is currently present.

{code}
private void startNewTask(tip){
  jobFile = localizeJob(tip);
  launchTaskForJob(tip, jobFile);
  ...
}
{code}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.