Remove constructor base() redundancies

This commit is contained in:
ScottNZ
2013-11-12 17:31:55 +13:00
parent 7c5f3cc0f1
commit 86a3e14f2d
32 changed files with 20 additions and 34 deletions

View File

@@ -23,7 +23,7 @@ namespace OpenRA.FileFormats.Primitives
public event Action<object, object> OnSet = (o, n) => { };
public event Action OnRefresh = () => { };
public ObservableCollection() : base() { }
public ObservableCollection() { }
public ObservableCollection(IList<T> list) : base(list) { }
protected override void SetItem(int index, T item)