Skip to content
Snippets Groups Projects
Commit 3f7afb82 authored by Ryan Izard's avatar Ryan Izard
Browse files

Merge pull request #543 from phpHavok/master

Added a more useful toString() method.
parents 7415727a da58763e
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