Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/FluentNHibernate/MappingModel/AttributeStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public bool Equals(AttributeStore other)
public override bool Equals(object obj)
{
var typed = obj as AttributeStore;
if (null == typed) return false;
if (typed is null) return false;
return Equals(typed);
}

Expand All @@ -85,4 +85,4 @@ public static T GetOrDefault<T>(this AttributeStore store, string attribute)
return (T)(store.Get(attribute) ?? default(T));
}
}
}
}