Formatting Code base with ktlint
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / dsl / BluePrintWorkflowDSLBuilder.kt
index 6d46ac7..8a1a9d6 100644 (file)
@@ -72,11 +72,13 @@ class WorkflowBuilder(private val id: String, private val description: String) {
         workflow.outputs = outputs
         return workflow
     }
-
 }
 
-class StepBuilder(private val id: String, private val target: String,
-                  private val description: String) {
+class StepBuilder(
+    private val id: String,
+    private val target: String,
+    private val description: String
+) {
 
     private var step = Step()
     private var activities: ArrayList<Activity> = arrayListOf()