This is an automated email from the ASF dual-hosted git repository. tv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
commit 2c75cfe32b4e3487c0735543ddf51bb90050872e Author: Thomas Vandahl <t...@apache.org> AuthorDate: Sat Mar 27 17:58:57 2021 +0100 Cosmetics --- .../apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java index 6e42379..a7855e4 100644 --- a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java +++ b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java @@ -85,7 +85,7 @@ public class UDPDiscoveryReceiver private final AtomicBoolean shutdown = new AtomicBoolean(false); /** - * Constructor for the LateralUDPReceiver object. + * Constructor for the UDPDiscoveryReceiver object. * <p> * We determine out own host using InetAddress *<p> @@ -95,8 +95,10 @@ public class UDPDiscoveryReceiver * @param multicastPort * @throws IOException */ - public UDPDiscoveryReceiver( final UDPDiscoveryService service, final String multicastInterfaceString, - final String multicastAddressString, final int multicastPort ) + public UDPDiscoveryReceiver( final UDPDiscoveryService service, + final String multicastInterfaceString, + final String multicastAddressString, + final int multicastPort ) throws IOException { this.service = service;