Remove (non-Javadoc) comments

Search and replace using '(?s)/\*\s*\* \(non-Javadoc\).*?\*/' to remove
all "(non-Javadoc)" comments. These comments used to be added
automatically by Eclipse, but are not really necessary.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-08-05 19:55:36 -07:00
committed by Rob Winch
parent a2f2e9ac8d
commit 3e700e7571
42 changed files with 1 additions and 425 deletions

View File

@@ -54,37 +54,16 @@ public class JndiDnsResolver implements DnsResolver {
this.ctxFactory = ctxFactory;
}
/*
* (non-Javadoc)
*
* @see
* org.springframework.security.remoting.dns.DnsResolver#resolveIpAddress(java.lang
* .String)
*/
@Override
public String resolveIpAddress(String hostname) {
return resolveIpAddress(hostname, this.ctxFactory.getCtx());
}
/*
* (non-Javadoc)
*
* @see
* org.springframework.security.remoting.dns.DnsResolver#resolveServiceEntry(java.
* lang.String, java.lang.String)
*/
@Override
public String resolveServiceEntry(String serviceType, String domain) {
return resolveServiceEntry(serviceType, domain, this.ctxFactory.getCtx());
}
/*
* (non-Javadoc)
*
* @see
* org.springframework.security.remoting.dns.DnsResolver#resolveServiceIpAddress(java
* .lang.String, java.lang.String)
*/
@Override
public String resolveServiceIpAddress(String serviceType, String domain) {
DirContext ctx = this.ctxFactory.getCtx();