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