You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Pavel Konstantinov (JIRA)" <ji...@apache.org> on 2016/05/18 11:02:12 UTC

[jira] [Created] (IGNITE-3166) Incorrect java code in corner case

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)