Formatting Code base with ktlint
[ccsdk/cds.git] / ms / controllerblueprints / modules / resource-dict / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / resource / dict / factory / ResourceSourceMappingFactory.kt
index 6f2b9ba..f8dea98 100644 (file)
@@ -35,7 +35,7 @@ object ResourceSourceMappingFactory {
 
     fun getRegisterSourceMapping(sourceInstance: String): String {
         return resourceSourceMappings[sourceInstance]
-                ?: throw BluePrintException(format("failed to get source({}) mapping", sourceInstance))
+            ?: throw BluePrintException(format("failed to get source({}) mapping", sourceInstance))
     }
 
     fun getRegisterSourceMapping(): ResourceSourceMapping {
@@ -44,4 +44,3 @@ object ResourceSourceMappingFactory {
         return resourceSourceMapping
     }
 }
-