Răsfoiți Sursa

backed out unrelated code

Tigger Kindel 1 an în urmă
părinte
comite
83eb88985a
1 a modificat fișierele cu 0 adăugiri și 24 ștergeri
  1. 0 24
      Terminal.Gui/Configuration/ConfigurationManager.cs

+ 0 - 24
Terminal.Gui/Configuration/ConfigurationManager.cs

@@ -16,30 +16,6 @@ using System.Text.Json.Serialization;
 
 namespace Terminal.Gui;
 
-/// <summary>
-/// <para>
-/// Classes should implement this interface on any class that should be notified when the configuration changes.
-/// This is an alternative to using the <see cref="ConfigurationManager.Updated"/> and
-/// <see cref="ConfigurationManager.Applied"/> events.
-/// <para>
-/// When the configuration has changed, the <see cref="ConfigurationManager"/> will call the <see cref="OnUpdated"/>
-/// method. When the configuration is being applied, the <see cref="OnApplied"/> method will be called.
-/// 
-/// </para>
-/// </summary>
-public interface ISupportConfigChanges {
-
-	/// <summary>
-	/// Called when the configuration has been updated.
-	/// </summary>
-	public void OnUpdated ();
-
-	/// <summary>
-	/// Called when the configuration is being applied.
-	/// </summary>
-	public void OnApplied ();
-}
-
 /// <summary>
 /// Provides settings and configuration management for Terminal.Gui applications. 
 /// <para>