Skip to content

Commit 307e602

Browse files
committed
Fix broken tests
1 parent 7364a96 commit 307e602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate/Intercept/AbstractFieldInterceptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ private object InitializeField(string fieldName, object target)
210210

211211
public ISet<string> GetUninitializedFields()
212212
{
213-
return uninitializedFieldsReadOnly ?? CollectionHelper.EmptySet<string>();
213+
return uninitializedFields ?? CollectionHelper.EmptySet<string>();
214214
}
215215

216216
public void ClearInitializedLazyFields()

0 commit comments

Comments
 (0)