[skip ci] hide Prov instanceName as currently no extern usage is known
This commit is contained in:
parent
fba09f5337
commit
d8ff355893
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ private const val RESULT_PREFIX = "> "
|
||||||
*/
|
*/
|
||||||
open class Prov protected constructor(
|
open class Prov protected constructor(
|
||||||
private val processor: Processor,
|
private val processor: Processor,
|
||||||
val name: String? = null,
|
private val instanceName: String? = null,
|
||||||
private val progressType: ProgressType = ProgressType.BASIC
|
private val progressType: ProgressType = ProgressType.BASIC
|
||||||
) {
|
) {
|
||||||
init {
|
init {
|
||||||
|
@ -356,7 +356,7 @@ open class Prov protected constructor(
|
||||||
|
|
||||||
private fun printResults() {
|
private fun printResults() {
|
||||||
println(
|
println(
|
||||||
"============================================== SUMMARY " + (if (name != null) "(" + name + ") " else "") +
|
"============================================== SUMMARY " + (if (instanceName != null) "(" + instanceName + ") " else "") +
|
||||||
"============================================== "
|
"============================================== "
|
||||||
)
|
)
|
||||||
for (result in internalResults) {
|
for (result in internalResults) {
|
||||||
|
|
Loading…
Reference in a new issue