Revert "Checkstyle enforcer"
[controller.git] / opendaylight / northbound / topology / src / main / java / org / opendaylight / controller / topology / northbound / Topology.java
index 15548d94286ceb0eb3058e0211cb5c3abcb29024..bfc86cf34b7fda45fb3ca1869c7d9a87680a62ae 100644 (file)
@@ -19,22 +19,22 @@ import javax.xml.bind.annotation.XmlRootElement;
 @XmlAccessorType(XmlAccessType.NONE)
 
 public class Topology {
-        @XmlElement
-        List<EdgeProperties> edgeProperties;
-        //To satisfy JAXB
-        private Topology() {
-
-        }
-
-        public Topology(List<EdgeProperties> edgeProperties) {
-                this.edgeProperties = edgeProperties;
-        }
-
-        public List<EdgeProperties> getEdgeProperties() {
-                return edgeProperties;
-        }
-
-        public void setEdgeProperties(List<EdgeProperties> edgeProperties) {
-                this.edgeProperties = edgeProperties;
-        }
+       @XmlElement
+       List<EdgeProperties> edgeProperties;
+       //To satisfy JAXB
+       private Topology() {
+               
+       }
+       
+       public Topology(List<EdgeProperties> edgeProperties) {
+               this.edgeProperties = edgeProperties;
+       }
+
+       public List<EdgeProperties> getEdgeProperties() {
+               return edgeProperties;
+       }
+
+       public void setEdgeProperties(List<EdgeProperties> edgeProperties) {
+               this.edgeProperties = edgeProperties;
+       }
 }