You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2019/02/25 08:50:47 UTC

[ignite] branch master updated: IGNITE-11388 Proper method implementation. - Fixes #6169.

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

agoncharuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 66f56d3  IGNITE-11388 Proper method implementation. - Fixes #6169.
66f56d3 is described below

commit 66f56d38cf2512a254ac62f910d3f68e2998e731
Author: ibessonov <be...@gmail.com>
AuthorDate: Mon Feb 25 11:32:19 2019 +0300

    IGNITE-11388 Proper method implementation. - Fixes #6169.
    
    Signed-off-by: Alexey Goncharuk <al...@gmail.com>
---
 .../main/java/org/apache/ignite/internal/MarshallerContextImpl.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextImpl.java
index bfe2da0..68d68e3 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextImpl.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextImpl.java
@@ -308,8 +308,8 @@ public class MarshallerContextImpl implements MarshallerContext {
 
     /** {@inheritDoc} */
     @Override
-    public boolean registerClassName(byte platformId, int typeId, String clsName) {
-        throw new UnsupportedOperationException("registerClassName");
+    public boolean registerClassName(byte platformId, int typeId, String clsName) throws IgniteCheckedException {
+        return registerClassName(platformId, typeId, clsName, false);
     }
 
     /** {@inheritDoc} */