Skip to content

Commit cce00db

Browse files
Update Orm/Xtensive.Orm/Orm/Model/TypeInfoCollection.cs
Co-authored-by: Alexey Kulakov <alexey.kulakov@dataobjects.net>
1 parent 51f7eed commit cce00db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm/Orm/Model/TypeInfoCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public TypeInfo Find(string fullName)
196196
/// <see cref="IEnumerable{T}"/> of <see cref="TypeInfo"/> instance that are descendants of specified <paramref name="item"/>.
197197
/// </returns>
198198
/// <exception cref="ArgumentNullException">When <paramref name="item"/> is <see langword="null"/>.</exception>
199-
[Obsolete("Use TypeInfo.Descendants/.RecursiveDescendants")]
199+
[Obsolete("Use TypeInfo.DirectDescendants/.AllDescendants")]
200200
public IEnumerable<TypeInfo> FindDescendants(TypeInfo item, bool recursive) =>
201201
recursive ? item.AllDescendants : item.DirectDescendants;
202202

0 commit comments

Comments
 (0)