From d8ff3558939dcfdcbc92dd11f495b606e4f25fea Mon Sep 17 00:00:00 2001 From: ansgarz Date: Sat, 12 Mar 2022 17:45:45 +0100 Subject: [PATCH] [skip ci] hide Prov instanceName as currently no extern usage is known --- .../org/domaindrivenarchitecture/provs/framework/core/Prov.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Prov.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Prov.kt index 2f97b6c..f17a589 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Prov.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Prov.kt @@ -21,7 +21,7 @@ private const val RESULT_PREFIX = "> " */ open class Prov protected constructor( private val processor: Processor, - val name: String? = null, + private val instanceName: String? = null, private val progressType: ProgressType = ProgressType.BASIC ) { init { @@ -356,7 +356,7 @@ open class Prov protected constructor( private fun printResults() { println( - "============================================== SUMMARY " + (if (name != null) "(" + name + ") " else "") + + "============================================== SUMMARY " + (if (instanceName != null) "(" + instanceName + ") " else "") + "============================================== " ) for (result in internalResults) {