mirror of
https://github.com/mbierlee/mirage-injector.git
synced 2024-11-15 05:14:01 +01:00
Remove incorrect override keyword
The super is a trait, and a type template too
This commit is contained in:
parent
05c0a2bb35
commit
40b0c9522d
|
@ -23,7 +23,7 @@ class MirageValueInjector(Type) : ValueInjector!Type
|
||||||
@Autowire
|
@Autowire
|
||||||
private ConfigDictionary config;
|
private ConfigDictionary config;
|
||||||
|
|
||||||
public override Type get(string key)
|
public Type get(string key)
|
||||||
{
|
{
|
||||||
return config.get!Type(key);
|
return config.get!Type(key);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue