commit | 195c037b7d84543d38c37127efcb916f84a5af75 | [log] [tgz] |
---|---|---|
author | Jonathan Hart <jono@onlab.us> | Mon Jul 25 18:02:47 2016 -0700 |
committer | Gerrit Code Review <gerrit@onlab.us> | Tue Jul 26 17:26:42 2016 +0000 |
tree | 2072da452d6d7d75db00b159da471f1f0d42a681 | |
parent | f7c5655c12dd3d03507f31d6245d38c64a83e5ea [diff] |
Deprecated unused NetTools class Change-Id: I5b0a125461eedc4185989a821ccd9afd6a81a82c
diff --git a/core/api/src/main/java/org/onosproject/net/NetTools.java b/core/api/src/main/java/org/onosproject/net/NetTools.java index 105f73f..48e2ca1 100644 --- a/core/api/src/main/java/org/onosproject/net/NetTools.java +++ b/core/api/src/main/java/org/onosproject/net/NetTools.java
@@ -17,7 +17,10 @@ /** * Networking domain tools. + * + * @deprecated in Hummingbird release */ +@Deprecated public final class NetTools { private NetTools() { @@ -30,7 +33,9 @@ * * @param dpid the DPID string to convert * @return the URI string for this device + * @deprecated in Hummingbird release */ + @Deprecated public static String dpidToUri(String dpid) { return "of:" + dpid.replace(":", ""); }