Add instructions to invoke the linter and code formatter plugins to the README and...
[aai/schema-service.git] / aai-schema-service / src / main / java / org / onap / aai / schemaservice / edges / EdgeRules.java
index ec68d30..bad43d3 100644 (file)
@@ -8,7 +8,7 @@
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  *
- *    http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
@@ -17,6 +17,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.schemaservice.edges;
 
 import com.google.gson.annotations.SerializedName;
@@ -29,7 +30,7 @@ public class EdgeRules {
     @SerializedName("rules")
     private List<EdgeRule> rules;
 
-    public EdgeRules(List<EdgeRule> rules){
+    public EdgeRules(List<EdgeRule> rules) {
         this.rules = rules;
     }
 
@@ -64,9 +65,7 @@ public class EdgeRules {
 
     @Override
     public String toString() {
-        return "EdgeRules{" +
-            "rules=" + rules +
-            '}';
+        return "EdgeRules{" + "rules=" + rules + '}';
     }
 
 }