correct constructor parameter names for plugin features
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
|
||||
public abstract class PluginFunction : PluginFeature
|
||||
{
|
||||
protected PluginFunction(string functionType, string functionIdentifier) : base(functionType, functionIdentifier)
|
||||
protected PluginFunction(string type, string identifier) : base(type, identifier)
|
||||
{
|
||||
}
|
||||
|
||||
protected PluginFunction(string functionType, string functionIdentifier, string? functionName) : base(functionType, functionIdentifier, functionName)
|
||||
protected PluginFunction(string type, string identifier, string? name) : base(type, identifier, name)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user