Rohith Sharma K S created YARN-4535:
---------------------------------------
Summary: Fix checkstyle error in CapacityScheduler.java
Key: YARN-4535
URL: https://issues.apache.org/jira/browse/YARN-4535
Project: Hadoop YARN
Issue Type: Task
Reporter: Rohith Sharma K S
Priority: Trivial
In the below code *CS#parseQueue*, expression can be simplified instead of
{{queue instanceof LeafQueue == true}} & {{queues.get(queueName) instanceof
LeafQueue == true}}
{code}
if(queue instanceof LeafQueue == true && queues.containsKey(queueName)
&& queues.get(queueName) instanceof LeafQueue == true) {
throw new IOException("Two leaf queues were named " + queueName
+ ". Leaf queue names must be distinct");
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)