Revert "Checkstyle enforcer"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / SupportedBandwidth.java
index cd6589ed6d3da0d492fa1217dff859dc3dd56d89..5cb7b33890b04e6f491a4dc0f1b39f69c77bde2e 100644 (file)
@@ -22,24 +22,24 @@ import javax.xml.bind.annotation.XmlRootElement;
  */
 @XmlRootElement
 public class SupportedBandwidth extends Bandwidth {
-        private static final long serialVersionUID = 1L;
-        public static final String SupportedBandwidthPropName = "supportedBandwidth";
-
-        public SupportedBandwidth(long value) {
-                super(SupportedBandwidthPropName);
-                this.bandwidthValue = value;
-        }
-
-        /*
+       private static final long serialVersionUID = 1L;
+       public static final String SupportedBandwidthPropName = "supportedBandwidth";
+       
+       public SupportedBandwidth(long value) {
+               super(SupportedBandwidthPropName);
+               this.bandwidthValue = value;
+       }
+       
+       /*
      * Private constructor used for JAXB mapping
      */
     private SupportedBandwidth() {
-        super(SupportedBandwidthPropName);
-                this.bandwidthValue = 0;
+       super(SupportedBandwidthPropName);
+               this.bandwidthValue = 0;
     }
-
-        public SupportedBandwidth clone() {
-                return new SupportedBandwidth(this.bandwidthValue);
+       
+       public SupportedBandwidth clone() {
+               return new SupportedBandwidth(this.bandwidthValue);  
     }
 
     @Override