Fix some checkstyle and other issues
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / main / java / org / opendaylight / mdsal / binding / dom / adapter / LazyDataTreeModification.java
index 52d649876325dbfde1e615df1acadb4f78d4ade8..c5869c248392cac39af6387763bb26690149ac3d 100644 (file)
@@ -78,7 +78,7 @@ class LazyDataTreeModification<T extends DataObject> implements DataTreeModifica
             final Collection<DataTreeCandidate> domChanges, final LogicalDatastoreType datastoreType) {
         final List<DataTreeModification<T>> result = new ArrayList<>(domChanges.size());
         for (final DataTreeCandidate domChange : domChanges) {
-            result.add(LazyDataTreeModification.<T>create(codec, domChange, datastoreType));
+            result.add(LazyDataTreeModification.create(codec, domChange, datastoreType));
         }
         return result;
     }