mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
fix: stub out implicit Dispose in DalamudPluginInterface
This commit is contained in:
parent
733fffc6f1
commit
70ef1ed45f
1 changed files with 9 additions and 0 deletions
|
|
@ -392,6 +392,15 @@ namespace Dalamud.Plugin
|
||||||
Service<DalamudConfiguration>.Get().DalamudConfigurationSaved -= this.OnDalamudConfigurationSaved;
|
Service<DalamudConfiguration>.Get().DalamudConfigurationSaved -= this.OnDalamudConfigurationSaved;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Obsolete implicit dispose implementation. Should not be used.
|
||||||
|
/// </summary>
|
||||||
|
[Obsolete("Do not dispose \"DalamudPluginInterface\".", true)]
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
// ignored
|
||||||
|
}
|
||||||
|
|
||||||
private void OnLocalizationChanged(string langCode)
|
private void OnLocalizationChanged(string langCode)
|
||||||
{
|
{
|
||||||
this.UiLanguage = langCode;
|
this.UiLanguage = langCode;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue