IGNITE-2977: .NET: Added ability to use Java filter in .NET continuous queries: fix VS2010 compilation.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/91fd8ff6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/91fd8ff6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/91fd8ff6 Branch: refs/heads/ignite-2788 Commit: 91fd8ff61a2373fd584a347348215ed638488903 Parents: 6994a43 Author: Pavel Tupitsyn <[email protected]> Authored: Wed Apr 27 15:47:19 2016 +0300 Committer: shtykh_roman <[email protected]> Committed: Fri May 13 16:11:15 2016 +0900 ---------------------------------------------------------------------- .../Cache/Query/Continuous/ContinuousQueryJavaFilterTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/91fd8ff6/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/Query/Continuous/ContinuousQueryJavaFilterTest.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/Query/Continuous/ContinuousQueryJavaFilterTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/Query/Continuous/ContinuousQueryJavaFilterTest.cs index ed9d2ad..76be0fd 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/Query/Continuous/ContinuousQueryJavaFilterTest.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/Query/Continuous/ContinuousQueryJavaFilterTest.cs @@ -295,8 +295,8 @@ namespace Apache.Ignite.Core.Tests.Cache.Query.Continuous String = s; } - private int Int { get; } - private string String { get; } + private int Int { get; set; } + private string String { get; set; } private bool Equals(TestBinary other) {
