@@ -32,7 +32,7 @@ public class ActorInfo
32
32
/// </summary>
33
33
public readonly string Name ;
34
34
readonly TypeDictionary traits = new TypeDictionary ( ) ;
35
- List < ITraitInfo > constructOrderCache = null ;
35
+ List < TraitInfo > constructOrderCache = null ;
36
36
37
37
public ActorInfo ( ObjectCreator creator , string name , MiniYaml node )
38
38
{
@@ -64,23 +64,23 @@ public ActorInfo(ObjectCreator creator, string name, MiniYaml node)
64
64
}
65
65
}
66
66
67
- public ActorInfo ( string name , params ITraitInfo [ ] traitInfos )
67
+ public ActorInfo ( string name , params TraitInfo [ ] traitInfos )
68
68
{
69
69
Name = name ;
70
70
foreach ( var t in traitInfos )
71
71
traits . Add ( t ) ;
72
72
traits . TrimExcess ( ) ;
73
73
}
74
74
75
- static ITraitInfo LoadTraitInfo ( ObjectCreator creator , string traitName , MiniYaml my )
75
+ static TraitInfo LoadTraitInfo ( ObjectCreator creator , string traitName , MiniYaml my )
76
76
{
77
77
if ( ! string . IsNullOrEmpty ( my . Value ) )
78
78
throw new YamlException ( "Junk value `{0}` on trait node {1}"
79
79
. F ( my . Value , traitName ) ) ;
80
80
81
81
// HACK: The linter does not want to crash when a trait doesn't exist but only print an error instead
82
82
// ObjectCreator will only return null to signal us to abort here if the linter is running
83
- var info = creator . CreateObject < ITraitInfo > ( traitName + "Info" ) ;
83
+ var info = creator . CreateObject < TraitInfo > ( traitName + "Info" ) ;
84
84
if ( info == null )
85
85
return null ;
86
86
@@ -97,12 +97,12 @@ static ITraitInfo LoadTraitInfo(ObjectCreator creator, string traitName, MiniYam
97
97
return info ;
98
98
}
99
99
100
- public IEnumerable < ITraitInfo > TraitsInConstructOrder ( )
100
+ public IEnumerable < TraitInfo > TraitsInConstructOrder ( )
101
101
{
102
102
if ( constructOrderCache != null )
103
103
return constructOrderCache ;
104
104
105
- var source = traits . WithInterface < ITraitInfo > ( ) . Select ( i => new
105
+ var source = traits . WithInterface < TraitInfo > ( ) . Select ( i => new
106
106
{
107
107
Trait = i ,
108
108
Type = i . GetType ( ) ,
@@ -148,7 +148,7 @@ public IEnumerable<ITraitInfo> TraitsInConstructOrder()
148
148
return constructOrderCache ;
149
149
}
150
150
151
- public static IEnumerable < Type > PrerequisitesOf ( ITraitInfo info )
151
+ public static IEnumerable < Type > PrerequisitesOf ( TraitInfo info )
152
152
{
153
153
return info
154
154
. GetType ( )
0 commit comments