Skip to content

Commit 8ad10eb

Browse files
Update Orm/Xtensive.Orm/Orm/Model/TypeInfoCollection.cs
Co-authored-by: Alexey Kulakov <alexey.kulakov@dataobjects.net>
1 parent 75b3758 commit 8ad10eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public IEnumerable<TypeInfo> FindInterfaces(TypeInfo item, bool recursive) =>
238238
/// <see cref="IEnumerable{T}"/> of <see cref="TypeInfo"/> instance that are implementors of specified <paramref name="item"/>.
239239
/// </returns>
240240
/// <exception cref="ArgumentNullException">When <paramref name="item"/> is <see langword="null"/>.</exception>
241-
[Obsolete("Use TypeInfo.Implementors/.RecursiveImplementors")]
241+
[Obsolete("Use TypeInfo.DirectImplementors/.AllImplementors ")]
242242
public IEnumerable<TypeInfo> FindImplementors(TypeInfo item, bool recursive) =>
243243
recursive ? item.AllImplementors : item.DirectImplementors;
244244

0 commit comments

Comments
 (0)