(Object o)
| 69 | } |
| 70 | |
| 71 | public boolean equals(Object o) { |
| 72 | if (!(o instanceof Outlink)) |
| 73 | return false; |
| 74 | Outlink other = (Outlink) o; |
| 75 | return this.toUrl.equals(other.toUrl) && this.anchor.equals(other.anchor); |
| 76 | } |
| 77 | |
| 78 | public String toString() { |
| 79 | return "toUrl: " + toUrl + " anchor: " + anchor; // removed "\n". toString, |
no outgoing calls
no test coverage detected