Remove useless UnsupportedOperationExceptions
[bgpcep.git] / testtool-util / src / main / java / org / opendaylight / protocol / util / InetSocketAddressUtil.java
index 5f4acb44391dbe2c5f525fa86fb82969b7923257..df52cfb27a58e7801c608cf5ee86a0a3c6f1cade 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.protocol.util;
 
 import com.google.common.collect.Lists;
@@ -25,7 +24,7 @@ public final class InetSocketAddressUtil {
     private static final List<Integer> ASSIGNED_PORTS = new ArrayList<>();
 
     private InetSocketAddressUtil() {
-        throw new UnsupportedOperationException();
+        // Hidden on purpose
     }
 
     public static List<InetSocketAddress> parseAddresses(final String address, final int defaultPort) {