nva commented on a change in pull request #6185: IGNITE-11386 Actualized configuration of local event listeners. URL: https://github.com/apache/ignite/pull/6185#discussion_r260626890
########## File path: modules/web-console/frontend/app/configuration/generator/generator/JavaTransformer.service.js ########## @@ -514,11 +520,12 @@ export default class IgniteJavaTransformer extends AbstractTransformer { static _constructMap(sb, map, vars = []) { const keyClsName = this.javaTypes.shortClassName(map.keyClsName); + const keyClsGeneric = map.keyClsGenericName ? `<${map.keyClsGenericExtends ? '? extends ' : ''}${this.javaTypes.shortClassName(map.keyClsGenericName)}>` : ''; Review comment: Please try to simplify this expression, may be will be better to separate for two lines or add braces. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services