Skip to content

Commit 3006e8a

Browse files
author
Ven
committed
feat: 开放步骤clazzName字段
1 parent 190a97f commit 3006e8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assists/src/main/java/com/ven/assist/step/StepManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object StepManager {
3333
fun <T : StepImpl> execute(stepImpl: Class<T>, step: Int, delay: Long = Assists.Config.defaultStepDelay, data: Any? = null, isBegin: Boolean = false) {
3434
if (isBegin) isStop = false
3535
if (isStop) return
36-
Log.d(Assists.Config.logTag, "execute->${stepImpl.simpleName}:$step-delay:$delay")
36+
Log.d(Assists.Config.logTag, "execute->${stepImpl.name}:$step-delay:$delay")
3737
stepCollector[stepImpl.name] ?: register(stepImpl)
3838
stepCollector[stepImpl.name]?.get(step)?.let {
3939
it.data = data

assists/src/main/java/com/ven/assist/step/StepOperator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import com.blankj.utilcode.util.ThreadUtils
77
import com.ven.assist.Assists
88

99
class StepOperator(
10-
private val clazzName: String,
10+
val clazzName: String,
1111
val step: Int,
1212
val loopDuration: Long = 0,
1313
val loopInterval: Long = 250,

0 commit comments

Comments
 (0)