memo about Device and minor fix

Change-Id: I33ca971ef35d033b34f1b153f56d3a9fce274804
diff --git a/src/main/java/net/onrc/onos/ofcontroller/networkgraph/AbstractNetworkGraph.java b/src/main/java/net/onrc/onos/ofcontroller/networkgraph/AbstractNetworkGraph.java
index d84de5f..b2f9247 100644
--- a/src/main/java/net/onrc/onos/ofcontroller/networkgraph/AbstractNetworkGraph.java
+++ b/src/main/java/net/onrc/onos/ofcontroller/networkgraph/AbstractNetworkGraph.java
@@ -97,7 +97,7 @@
 	public Iterable<Device> getDeviceByIp(InetAddress ipAddress) {
 		Set<Device> devices = addr2Device.get(ipAddress);
 		if (devices == null) {
-			return Collections.emptyList();
+			return Collections.emptySet();
 		}
 		return Collections.unmodifiableCollection(devices);
 	}