refactor(framework): rename agent.factory.module to agent.factory.component and update related imports

This commit is contained in:
2026-02-21 17:57:29 +08:00
parent b1e4d3c2e4
commit 86b7e5c492
59 changed files with 121 additions and 125 deletions

View File

@@ -309,7 +309,7 @@ class ActionSchedulerTest {
private fun wheelStateEnum(name: String): Any {
@Suppress("UNCHECKED_CAST")
val clazz = Class.forName(
$$"work.slhaf.partner.module.modules.action.dispatcher.scheduler.ActionScheduler$TimeWheel$WheelState"
$$"work.slhaf.partner.component.modules.action.dispatcher.scheduler.ActionScheduler$TimeWheel$WheelState"
) as Class<out Enum<*>>
return java.lang.Enum.valueOf(clazz, name)
}