You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2019/04/05 11:28:43 UTC

[ignite] 02/02: Fixing examples

This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch ignite-11525
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 61ef90646be3f23dbce9eead649a0ee8a13f5f11
Author: Pavel Tupitsyn <pt...@apache.org>
AuthorDate: Fri Apr 5 14:28:31 2019 +0300

    Fixing examples
---
 .../examples/Apache.Ignite.Examples/Datagrid/BinaryModeExample.cs       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/BinaryModeExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/BinaryModeExample.cs
index ed02e44..f4a5cfa 100644
--- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/BinaryModeExample.cs
+++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/BinaryModeExample.cs
@@ -187,7 +187,7 @@ namespace Apache.Ignite.Examples.Datagrid
             Console.WriteLine(">>> Persons working for " + orgName + ":");
 
             foreach (var entry in qry)
-                Console.WriteLine(">>>     " + entry);
+                Console.WriteLine(">>>     " + entry); // TODO: What do we print?
         }
 
         /// <summary>