Remove redundant code constructs
[netconf.git] / netconf / netconf-monitoring / src / main / java / org / opendaylight / netconf / monitoring / osgi / NetconfMonitoringOperationService.java
index 6141babe16e568daa14add06bd0e5c8dcc78e8ed..7bdeac6af5c1c80ecb12a6e64cfde163f3b7a6eb 100644 (file)
@@ -26,7 +26,7 @@ public class NetconfMonitoringOperationService implements NetconfOperationServic
 
     @Override
     public Set<NetconfOperation> getNetconfOperations() {
-        return Sets.<NetconfOperation>newHashSet(new Get(monitor), new GetSchema(monitor));
+        return Sets.newHashSet(new Get(monitor), new GetSchema(monitor));
     }
 
     @Override