Major issue in sli/plugins module
*Used diamond operator to reduce verbosity of generics code
*Removed unnecessary parantheses as they can be misleading
sometimes
Issue-Id: CCSDK-87
Change-Id: I81c0b566f5beb81d3733549a2f9de81b50d6814c
Signed-off-by: surya-huawei <a.u.surya@huawei.com>
 
     public FabricDiscoveryPlugin() {
         service = Executors.newFixedThreadPool(10);
-        streamMap = new ConcurrentHashMap<String, WebSocketClient> ();
+        streamMap = new ConcurrentHashMap<>();
     }
 
     @Override
         }
 
         ctx.setAttribute(pfx + FB_DISCOVERY_STATUS, "Success");
-        LOG.info("{} monitoring notification stream: {}", (enable) ? "START" : "STOP", stream);
+        LOG.info("{} monitoring notification stream: {}", enable ? "START" : "STOP", stream);
 
         try {
             service.execute(new Runnable () {