Fix some checkstyle warnings

Change-Id: I391864a9a3f9973030c03a953b768f7f12489745
diff --git a/src/main/java/net/onrc/onos/core/topology/TopologyManager.java b/src/main/java/net/onrc/onos/core/topology/TopologyManager.java
index 78b6b9f..f5929d1 100644
--- a/src/main/java/net/onrc/onos/core/topology/TopologyManager.java
+++ b/src/main/java/net/onrc/onos/core/topology/TopologyManager.java
@@ -88,14 +88,15 @@
     //
     // Local state for keeping track of the application event notifications
     //
-    List<SwitchEvent> apiAddedSwitchEvents = new LinkedList<SwitchEvent>();
-    List<SwitchEvent> apiRemovedSwitchEvents = new LinkedList<SwitchEvent>();
-    List<PortEvent> apiAddedPortEvents = new LinkedList<PortEvent>();
-    List<PortEvent> apiRemovedPortEvents = new LinkedList<PortEvent>();
-    List<LinkEvent> apiAddedLinkEvents = new LinkedList<LinkEvent>();
-    List<LinkEvent> apiRemovedLinkEvents = new LinkedList<LinkEvent>();
-    List<DeviceEvent> apiAddedDeviceEvents = new LinkedList<DeviceEvent>();
-    List<DeviceEvent> apiRemovedDeviceEvents = new LinkedList<DeviceEvent>();
+
+    private List<SwitchEvent> apiAddedSwitchEvents = new LinkedList<>();
+    private List<SwitchEvent> apiRemovedSwitchEvents = new LinkedList<>();
+    private List<PortEvent> apiAddedPortEvents = new LinkedList<>();
+    private List<PortEvent> apiRemovedPortEvents = new LinkedList<>();
+    private List<LinkEvent> apiAddedLinkEvents = new LinkedList<>();
+    private List<LinkEvent> apiRemovedLinkEvents = new LinkedList<>();
+    private List<DeviceEvent> apiAddedDeviceEvents = new LinkedList<>();
+    private List<DeviceEvent> apiRemovedDeviceEvents = new LinkedList<>();
 
     /**
      * Constructor.