Skip to content

Commit

Permalink
Fixing strange code autocleanups.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rambalac committed Apr 26, 2017
1 parent 869eb95 commit 4844f84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions Tools/IObservableHashCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using Core.Tools;

public interface IObservableHashCollection : INotifyCollectionChanged, INotifyPropertyChanged
{
Expand Down
2 changes: 2 additions & 0 deletions Tools/ObservableHashCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using Core.Tools;

public class ObservableHashCollection<TItem> : HashCollection<TItem>, IObservableHashCollection
where TItem : IStringIdItem
Expand Down
1 change: 1 addition & 0 deletions Tools/SettingsContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace GMaster.Tools
using System.ComponentModel;
using System.Reflection;
using System.Runtime.CompilerServices;
using Core.Tools;
using Newtonsoft.Json.Linq;

public class SettingsContainer : INotifyPropertyChanged
Expand Down

0 comments on commit 4844f84

Please sign in to comment.