YARN-9400. Remove unnecessary if at EntityGroupFSTimelineStore#parseApplicationId. Contributed by Prabhu Joseph.
This commit is contained in:
parent
b939ae98e6
commit
f4d6e82075
@ -549,15 +549,11 @@ private static boolean shouldCleanAppLogDir(Path appLogPath, long now,
|
||||
|
||||
// converts the String to an ApplicationId or null if conversion failed
|
||||
private static ApplicationId parseApplicationId(String appIdStr) {
|
||||
ApplicationId appId = null;
|
||||
if (appIdStr.startsWith(ApplicationId.appIdStrPrefix)) {
|
||||
try {
|
||||
appId = ApplicationId.fromString(appIdStr);
|
||||
} catch (IllegalArgumentException e) {
|
||||
appId = null;
|
||||
}
|
||||
try {
|
||||
return ApplicationId.fromString(appIdStr);
|
||||
} catch (IllegalArgumentException e) {
|
||||
return null;
|
||||
}
|
||||
return appId;
|
||||
}
|
||||
|
||||
private static ClassLoader createPluginClassLoader(
|
||||
|
Loading…
Reference in New Issue
Block a user