[skip ci] hide Prov instanceName as currently no extern usage is known

This commit is contained in:
ansgarz 2022-03-12 17:45:45 +01:00
parent fba09f5337
commit d8ff355893

View file

@ -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) {