fix typo
This commit is contained in:
parent
4ce52d50f6
commit
24f9f30a53
|
|
@ -58,7 +58,7 @@ public abstract class AgentHookBase : IAgentHook
|
|||
{
|
||||
}
|
||||
|
||||
public virtual void OnAgentUtilityloaded(Agent agent)
|
||||
public virtual void OnAgentUtilityLoaded(Agent agent)
|
||||
{
|
||||
if (agent.Type == AgentType.Routing) return;
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public interface IAgentHook
|
|||
|
||||
bool OnSamplesLoaded(List<string> samples);
|
||||
|
||||
void OnAgentUtilityloaded(Agent agent);
|
||||
void OnAgentUtilityLoaded(Agent agent);
|
||||
|
||||
/// <summary>
|
||||
/// Triggered when agent is loaded completely.
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ public partial class AgentService
|
|||
hook.OnSamplesLoaded(agent.Samples);
|
||||
}
|
||||
|
||||
hook.OnAgentUtilityloaded(agent);
|
||||
hook.OnAgentUtilityLoaded(agent);
|
||||
hook.OnAgentLoaded(agent);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue