wernerdv commented on code in PR #12229: URL: https://github.com/apache/ignite/pull/12229#discussion_r2238512786
########## modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java: ########## @@ -210,7 +210,15 @@ public BinaryContext( this.metaHnd = metaHnd; this.igniteInstanceName = igniteInstanceName; this.clsLdr = clsLdr; - this.bcfg = bcfg; + this.dfltSerializer = dfltSerializer; + + if (idMapper != null || nameMapper != null || !F.isEmpty(typeCfgs)) + this.mapperProvider = clsName -> resolveMapper(clsName, idMapper, nameMapper, typeCfgs); Review Comment: `this` is unnecessary in this context. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org