Revert "Checkstyle enforcer"
[controller.git] / opendaylight / northbound / topology / src / main / java / org / opendaylight / controller / topology / northbound / TopologyUserLinks.java
index db24755a2985e396f2128a5420ad819c425a7397..1b19edc5f617bde3b5f66a6ffc2455055666ef38 100644 (file)
@@ -22,23 +22,23 @@ import org.opendaylight.controller.topologymanager.TopologyUserLinkConfig;
 @XmlAccessorType(XmlAccessType.NONE)
 
 public class TopologyUserLinks {
-        @XmlElement
-        List<TopologyUserLinkConfig> userLinks;
-
-        //To satisfy JAXB
-        private TopologyUserLinks() {
-
-        }
-
-        public List<TopologyUserLinkConfig> getUserLinks() {
-                return userLinks;
-        }
-
-        public void setUserLinks(List<TopologyUserLinkConfig> userLinks) {
-                this.userLinks = userLinks;
-        }
-
-        public TopologyUserLinks(List<TopologyUserLinkConfig> userLinks) {
-                this.userLinks = new ArrayList<TopologyUserLinkConfig>(userLinks);
-        }
+       @XmlElement
+       List<TopologyUserLinkConfig> userLinks;
+       
+       //To satisfy JAXB
+       private TopologyUserLinks() {
+               
+       }
+       
+       public List<TopologyUserLinkConfig> getUserLinks() {
+               return userLinks;
+       }
+
+       public void setUserLinks(List<TopologyUserLinkConfig> userLinks) {
+               this.userLinks = userLinks;
+       }
+
+       public TopologyUserLinks(List<TopologyUserLinkConfig> userLinks) {
+               this.userLinks = new ArrayList<TopologyUserLinkConfig>(userLinks);
+       }
 }