mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
chore: remove IDalamudPlugin.Name
This commit is contained in:
parent
60a2051026
commit
c55b93d3c2
3 changed files with 2 additions and 18 deletions
|
|
@ -7,8 +7,4 @@ namespace Dalamud.Plugin;
|
|||
/// </summary>
|
||||
public interface IDalamudPlugin : IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the name of the plugin.
|
||||
/// </summary>
|
||||
string Name { get; }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -505,13 +505,6 @@ internal class LocalPlugin : IDisposable
|
|||
return;
|
||||
}
|
||||
|
||||
// In-case the manifest name was a placeholder. Can occur when no manifest was included.
|
||||
if (this.manifest.Name.IsNullOrEmpty() && !this.IsDev)
|
||||
{
|
||||
this.manifest.Name = this.instance.Name;
|
||||
this.manifest.Save(this.manifestFile, "manifest name null or empty");
|
||||
}
|
||||
|
||||
this.State = PluginState.Loaded;
|
||||
Log.Information($"Finished loading {this.DllFile.Name}");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue