Use ResolverResult.getResolutionUnsuccessfulException() in MiniDnsResolver

This commit is contained in:
Florian Schmaus 2017-12-05 20:52:42 +01:00
parent a25971d02b
commit 9863b9c458
1 changed files with 2 additions and 3 deletions

View File

@ -75,9 +75,8 @@ public class MiniDnsResolver extends DNSResolver implements SmackInitializer {
return null; return null;
} }
// TODO: Use ResolverResult.getResolutionUnsuccessfulException() found in newer MiniDNS versions. ResolutionUnsuccessfulException resolutionUnsuccessfulException = result.getResolutionUnsuccessfulException();
if (!result.wasSuccessful()) { if (resolutionUnsuccessfulException != null) {
ResolutionUnsuccessfulException resolutionUnsuccessfulException = getExceptionFrom(result);
failedAddresses.add(new HostAddress(name, resolutionUnsuccessfulException)); failedAddresses.add(new HostAddress(name, resolutionUnsuccessfulException));
return null; return null;
} }