Format code (#906)

pull/907/head
马称 Ma Chen 2 years ago committed by GitHub
parent 517779cf8a
commit 71f4fde08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -75,7 +75,7 @@ public class InetUtils implements Closeable {
try { try {
int lowest = Integer.MAX_VALUE; int lowest = Integer.MAX_VALUE;
for (Enumeration<NetworkInterface> nics = NetworkInterface for (Enumeration<NetworkInterface> nics = NetworkInterface
.getNetworkInterfaces(); nics.hasMoreElements(); ) { .getNetworkInterfaces(); nics.hasMoreElements();) {
NetworkInterface ifc = nics.nextElement(); NetworkInterface ifc = nics.nextElement();
if (ifc.isUp()) { if (ifc.isUp()) {
this.log.trace("Testing interface: " + ifc.getDisplayName()); this.log.trace("Testing interface: " + ifc.getDisplayName());
@ -86,7 +86,7 @@ public class InetUtils implements Closeable {
} }
if (!ignoreInterface(ifc.getDisplayName())) { if (!ignoreInterface(ifc.getDisplayName())) {
for (Enumeration<InetAddress> addrs = ifc for (Enumeration<InetAddress> addrs = ifc
.getInetAddresses(); addrs.hasMoreElements(); ) { .getInetAddresses(); addrs.hasMoreElements();) {
InetAddress address = addrs.nextElement(); InetAddress address = addrs.nextElement();
if (address instanceof Inet4Address if (address instanceof Inet4Address
&& !address.isLoopbackAddress() && !address.isLoopbackAddress()

@ -84,10 +84,8 @@ public class NettyConnectPoolHolder {
*/ */
public static synchronized NettyConnectPool getPool(String host, int port, public static synchronized NettyConnectPool getPool(String host, int port,
long timeout, EventLoopGroup worker) { long timeout, EventLoopGroup worker) {
/* // This cannot use the computeIfAbsent method directly here because put is already used in init.
* this cannot use the computeIfAbsent method directly here because put is already used in init. // Details refer to https://bugs.openjdk.java.net/browse/JDK-8062841
* Details refer to https://bugs.openjdk.java.net/browse/JDK-8062841
*/
NettyConnectPool pool = getPool(host, port); NettyConnectPool pool = getPool(host, port);
return pool == null ? initPool(host, port, timeout, worker) : pool; return pool == null ? initPool(host, port, timeout, worker) : pool;
} }

Loading…
Cancel
Save