wip
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/58074fc1 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/58074fc1 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/58074fc1 Branch: refs/heads/ignite-2977 Commit: 58074fc10d28f664ce1128615d3de88339d0f7b2 Parents: 8b54f08 Author: Pavel Tupitsyn <[email protected]> Authored: Wed Apr 13 15:19:49 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Wed Apr 13 15:19:49 2016 +0300 ---------------------------------------------------------------------- .../platforms/dotnet/Apache.Ignite.Core/Interop/JavaObject.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/58074fc1/modules/platforms/dotnet/Apache.Ignite.Core/Interop/JavaObject.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Interop/JavaObject.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Interop/JavaObject.cs index d45b98b..3550ef7 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Interop/JavaObject.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Interop/JavaObject.cs @@ -60,11 +60,11 @@ namespace Apache.Ignite.Core.Interop /// <param name="properties">The properties to set on the Java object.</param> public JavaObject(string className, IDictionary<string, object> properties) : this(className) { - _properties = properties; + _properties = properties ?? _properties; } /// <summary> - /// Gets or sets the Java class name. + /// Gets the Java class name. /// </summary> public string ClassName { @@ -72,7 +72,7 @@ namespace Apache.Ignite.Core.Interop } /// <summary> - /// Gets or sets the properties to be set on the Java object. + /// Gets the properties to be set on the Java object. /// </summary> public IDictionary<string, object> Properties {
