This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch ignite-27278
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-27278 by this push:
new 7686aca39d6 cleanup
7686aca39d6 is described below
commit 7686aca39d6547fe329e259ef6379505d4678ba3
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Dec 24 16:13:30 2025 +0200
cleanup
---
modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs | 2 --
1 file changed, 2 deletions(-)
diff --git a/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
b/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
index 031c67c1441..091cea8f7b9 100644
--- a/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
+++ b/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
@@ -75,7 +75,6 @@ public static class JobTarget
/// <param name="key">Key.</param>
/// <typeparam name="TKey">Key type.</typeparam>
/// <returns>Colocated job target.</returns>
- [RequiresUnreferencedCode(ReflectionUtils.TrimWarning)]
public static IJobTarget<TKey> Colocated<TKey>(QualifiedName tableName,
TKey key)
where TKey : notnull
{
@@ -107,7 +106,6 @@ public static class JobTarget
/// <param name="key">Key.</param>
/// <typeparam name="TKey">Key type.</typeparam>
/// <returns>Colocated job target.</returns>
- [RequiresUnreferencedCode(ReflectionUtils.TrimWarning)]
public static IJobTarget<TKey> Colocated<TKey>(string tableName, TKey key)
where TKey : notnull =>
Colocated(QualifiedName.Parse(tableName), key);