Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / UnkeyedListModificationStrategy.java
index 561f5fcc7876ee17cc98138a8cfab40895561c5a..fd538cb0f1c50958a361dc4d3cd6bbb623e3103e 100644 (file)
@@ -28,7 +28,7 @@ final class UnkeyedListModificationStrategy extends SchemaAwareApplyOperation {
     private final Optional<ModificationApplyOperation> entryStrategy;
 
     UnkeyedListModificationStrategy(final ListSchemaNode schema, final TreeType treeType) {
-        entryStrategy = Optional.<ModificationApplyOperation> of(new UnkeyedListItemModificationStrategy(schema, treeType));
+        entryStrategy = Optional.of(new UnkeyedListItemModificationStrategy(schema, treeType));
     }
 
     @Override