Remove IObservableCollection

This commit is contained in:
Joshua "Yoshi" Askharoun
2025-12-05 20:01:57 -06:00
parent d87e9d33db
commit 5ea6f1c909
2 changed files with 0 additions and 10 deletions
@@ -1,8 +0,0 @@
using System.Collections.Generic;
using System.Collections.Specialized;
namespace Microsoft.Iris.Debug.Data;
public interface IObservableCollection<T> : ICollection<T>, INotifyCollectionChanged
{
}
@@ -8,8 +8,6 @@ public interface IDebuggerState
void Start();
InterpreterCommand DebuggerCommand { get; set; }
//IObservableCollection<Breakpoint> Breakpoints { get; }
}
public interface IRemoteDebuggerState : IDebuggerState