YARN-586. Fixed a typo in ApplicationSubmissionContext#setApplicationId. Contributed by Zhijie Shen.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1470068 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vinod Kumar Vavilapalli 2013-04-19 22:25:17 +00:00
parent 7049c83d0e
commit d5556cb5c4
2 changed files with 6 additions and 3 deletions

View File

@ -161,6 +161,9 @@ Release 2.0.5-beta - UNRELEASED
YARN-514. Delayed store operations should not result in RM unavailability YARN-514. Delayed store operations should not result in RM unavailability
for app submission (Zhijie Shen via bikas) for app submission (Zhijie Shen via bikas)
YARN-586. Fixed a typo in ApplicationSubmissionContext#setApplicationId.
(Zhijie Shen via vinodkv)
OPTIMIZATIONS OPTIMIZATIONS
BUG FIXES BUG FIXES

View File

@ -58,12 +58,12 @@ public interface ApplicationSubmissionContext {
/** /**
* Set the <code>ApplicationId</code> of the submitted application. * Set the <code>ApplicationId</code> of the submitted application.
* @param appplicationId <code>ApplicationId</code> of the submitted * @param applicationId <code>ApplicationId</code> of the submitted
* application * application
*/ */
@Public @Public
@Stable @Stable
public void setApplicationId(ApplicationId appplicationId); public void setApplicationId(ApplicationId applicationId);
/** /**
* Get the application <em>name</em>. * Get the application <em>name</em>.