some work
This commit is contained in:
@@ -14,7 +14,7 @@ public abstract class WorkspaceFeature(string identifier, string name) : PluginF
|
||||
{
|
||||
OnConfigure(ref workspace);
|
||||
|
||||
if (workspace?.Config == null)
|
||||
if (workspace?.Config is null)
|
||||
return false;
|
||||
|
||||
workspace.Config.ProviderId = Identifier;
|
||||
@@ -22,7 +22,7 @@ public abstract class WorkspaceFeature(string identifier, string name) : PluginF
|
||||
return true;
|
||||
}
|
||||
|
||||
public virtual IWorkspace CreateFromSettings(WorkspaceConfig config)
|
||||
public virtual IWorkspace CreateFromConfig(WorkspaceConfig config)
|
||||
{
|
||||
OnCreate(out var workspace, config);
|
||||
return workspace;
|
||||
|
||||
Reference in New Issue
Block a user