Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Feb 23, 2025
1 parent fd2c1e8 commit 9753b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArchiSteamFarm/Core/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public static IEnumerable<T> SelectNodes<T>(this IDocument document, string xpat
return document.Body.SelectNodes(xpath).OfType<T>();
}

[Obsolete($"Use {nameof(Element.QuerySelectorAll)} instead, we're removing our AngleSharp.XPath dependency and helpers in the future ASF version")]
[Obsolete($"Use {nameof(element.QuerySelectorAll)} instead, we're removing our AngleSharp.XPath dependency and helpers in the future ASF version")]
[PublicAPI]
public static IEnumerable<T> SelectNodes<T>(this IElement element, string xpath) where T : class, INode {
ArgumentNullException.ThrowIfNull(element);
Expand Down

0 comments on commit 9753b36

Please sign in to comment.