Skip to content
Snippets Groups Projects
Commit da58763e authored by Jacob Chappell's avatar Jacob Chappell
Browse files

Added a more useful toString() method.

parent 7415727a
No related branches found
No related tags found
No related merge requests found
......@@ -44,4 +44,8 @@ public class MacVlanPair {
public int hashCode() {
return mac.hashCode() ^ vlan.hashCode();
}
}
\ No newline at end of file
public String toString() {
return "(" + mac.toString() + ", " + vlan.toString() + ")";
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment