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