Revert "YARN-6882. AllocationFileLoaderService.reloadAllocations() should use the diamond operator"

This reverts commit ce0cdc50d9.
This commit is contained in:
Daniel Templeton 2017-08-11 20:52:07 -07:00
parent ce0cdc50d9
commit 7d3cea232d
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ public class AllocationFileLoaderService extends AbstractService {
Map<FSQueueType, Set<String>> configuredQueues = new HashMap<>();
for (FSQueueType queueType : FSQueueType.values()) {
configuredQueues.put(queueType, new HashSet<>());
configuredQueues.put(queueType, new HashSet<String>());
}
// Read and parse the allocations file.
@ -281,7 +281,7 @@ public class AllocationFileLoaderService extends AbstractService {
throw new AllocationConfigurationException("Bad fair scheduler config " +
"file: top-level element not <allocations>");
NodeList elements = root.getChildNodes();
List<Element> queueElements = new ArrayList<>();
List<Element> queueElements = new ArrayList<Element>();
Element placementPolicyElement = null;
for (int i = 0; i < elements.getLength(); i++) {
Node node = elements.item(i);