Fix checkstyle violations in sdc/jtosca
[sdc/sdc-tosca.git] / src / main / java / org / onap / sdc / toscaparser / api / functions / Concat.java
index d47fd57..4ebeba9 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * 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
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -44,24 +44,24 @@ public class Concat extends Function {
     //    ':' ,
     //    get_attribute: [ server, port ] ]
 
-       public Concat(TopologyTemplate ttpl, Object context, String name, ArrayList<Object> args) {
-               super(ttpl,context,name,args);
-       }
-       
-       @Override
-       public Object result() {
-               return this;
-       }
-
-       @Override
-       void validate() {
-               if(args.size() < 1) {
-               ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE145",
-                   "ValueError: Invalid arguments for function \"concat\". " +
-                   "Expected at least one argument")); 
-               }
-       }
+
+    public Concat(TopologyTemplate ttpl, Object context, String name, ArrayList<Object> args) {
+        super(ttpl, context, name, args);
+    }
+
+    @Override
+    public Object result() {
+        return this;
+    }
+
+    @Override
+    void validate() {
+        if (args.size() < 1) {
+            ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE145",
+                    "ValueError: Invalid arguments for function \"concat\". " +
+                            "Expected at least one argument"));
+        }
+    }
 
 }