Pavel Konstantinov created IGNITE-3166:
------------------------------------------
Summary: Incorrect java code in corner case
Key: IGNITE-3166
URL:
https://issues.apache.org/jira/browse/IGNITE-3166 Project: Ignite
Issue Type: Sub-task
Reporter: Pavel Konstantinov
# add two caches with incorrect name, e.g. '%' and '+'
# verify generated java code
{code}
cfg.setCacheConfiguration(cache_(), cache_());
...
public static CacheConfiguration cache_()
...
public static CacheConfiguration cache__1()
{code}
should be
{code}
cfg.setCacheConfiguration(cache_(), cache__1());
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)