Compare commits
1 Commits
develop
...
resolver-f
Author | SHA1 | Date |
---|---|---|
genofire | 4d5eefc523 |
|
@ -368,7 +368,7 @@ public class Resolver {
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Result{" +
|
return "Result{" +
|
||||||
"ip='" + (ip == null ? null : ip.getHostAddress()) + '\'' +
|
"ip='" + (ip == null ? null : ip.getHostAddress()) + '\'' +
|
||||||
", hostame='" + hostname.toString() + '\'' +
|
", hostame='" + (hostname == null ? null : hostname.toString()) + '\'' +
|
||||||
", port=" + port +
|
", port=" + port +
|
||||||
", directTls=" + directTls +
|
", directTls=" + directTls +
|
||||||
", authenticated=" + authenticated +
|
", authenticated=" + authenticated +
|
||||||
|
|
Loading…
Reference in New Issue