Remove incorrect override keyword

The super is a trait, and a type template too
This commit is contained in:
Mike Bierlee 2023-03-07 02:25:42 +03:00
parent 05c0a2bb35
commit 40b0c9522d

View file

@ -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);
} }