Skip to content

Commit bdc4893

Browse files
committed
Fix a config service bug when top level references can be equal.
1 parent 2363789 commit bdc4893

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

ConfigService/ConfigService.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,6 @@ private void OnConfigPropertyChanged ( object sender, PropertyChangedEventArgs e
261261
/// <summary>Compares two configuration objects for equality using reflection</summary>
262262
private static bool ConfigEquals ( Config current, Config proposed )
263263
{
264-
if ( ReferenceEquals( current, proposed ) )
265-
{
266-
return true;
267-
}
268-
269264
if ( current.GetType() != proposed.GetType() )
270265
{
271266
return false;

0 commit comments

Comments
 (0)