Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / PSTUtil.java
index f1f6b442b716078d0e8c74d03e2c3d2f4a293423..8ffa4311c77b16733ec3d3ea3db191c4030f9039 100644 (file)
@@ -5,20 +5,19 @@
  * 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.pcep.spi;
 
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.path.setup.type.tlv.PathSetupType;
 
 public final class PSTUtil {
     private PSTUtil() {
-        throw new UnsupportedOperationException();
     }
 
     /**
-     *  Check whether Path is setup via RSVP-TE signaling protocol
-     * @param pst
-     * @return  true if setup is via RSVP-TE signaling protocol
+     * Check whether Path is setup via RSVP-TE signaling protocol.
+     *
+     * @param pst Path setup type
+     * @return true if setup is via RSVP-TE signaling protocol
      */
     public static boolean isDefaultPST(final PathSetupType pst) {
         if (pst != null && pst.getPst() != null && pst.getPst() != 0) {