Remove useless UnsupportedOperationExceptions
[bgpcep.git] / bmp / bmp-mock / src / main / java / org / opendaylight / protocol / bmp / mock / BmpMock.java
index f167efc78822bc0174f49f76aa78613d373584b4..df0a0a148a14e2058a50fa622b1849eb58b37eaa 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.bmp.mock;
 
 import com.google.common.net.InetAddresses;
@@ -26,18 +25,16 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 public final class BmpMock {
-
     private static final Logger LOG = LoggerFactory.getLogger(BmpMock.class);
 
     private BmpMock() {
-        throw new UnsupportedOperationException();
+        // Hidden on purpose
     }
 
     public static void main(final String[] args) {
         deploy(args);
     }
 
-
     private static BmpMockDispatcher initiateMock(final BmpMockArguments arguments) {
         final BGPExtensionProviderContext bgpCtx = new SimpleBGPExtensionProviderContext();
         final BGPActivator bgpActivator = new BGPActivator();
@@ -90,5 +87,4 @@ public final class BmpMock {
             return deployClients(dispatcher, arguments);
         }
     }
-
 }