Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / OrderedLeafSetModificationStrategy.java
index 488cc2281f01c1851f8142228016920871315028..f1e545b0cf1d5521ac2172dce339f2b20876df0f 100644 (file)
@@ -25,7 +25,7 @@ final class OrderedLeafSetModificationStrategy extends AbstractNodeContainerModi
     @SuppressWarnings({ "unchecked", "rawtypes" })
     OrderedLeafSetModificationStrategy(final LeafListSchemaNode schema, final TreeType treeType) {
         super((Class) LeafSetNode.class, treeType);
-        entryStrategy = Optional.<ModificationApplyOperation> of(new LeafSetEntryModificationStrategy(schema));
+        entryStrategy = Optional.of(new LeafSetEntryModificationStrategy(schema));
     }
 
     @Override