You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by se...@apache.org on 2015/07/31 09:47:07 UTC

[25/50] incubator-ignite git commit: IGNITE-843 Fixed java code generation.

IGNITE-843 Fixed java code generation.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/524ff59f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/524ff59f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/524ff59f

Branch: refs/heads/ignite-1155_1
Commit: 524ff59feb75018f3c2364b8b19642895f71c4d1
Parents: 8922aad
Author: AKuznetsov <ak...@gridgain.com>
Authored: Thu Jul 30 17:06:36 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Thu Jul 30 17:06:36 2015 +0700

----------------------------------------------------------------------
 modules/control-center-web/src/main/js/routes/generator/java.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/524ff59f/modules/control-center-web/src/main/js/routes/generator/java.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/routes/generator/java.js b/modules/control-center-web/src/main/js/routes/generator/java.js
index 6024a4d..c10b6ce 100644
--- a/modules/control-center-web/src/main/js/routes/generator/java.js
+++ b/modules/control-center-web/src/main/js/routes/generator/java.js
@@ -555,7 +555,7 @@ function addCacheConfiguration(res, cache, varName) {
         if (storeFactory.dialect) {
             var dataSourceBean = storeFactory.dataSourceBean;
 
-            dsVarName = 'dataSource' + generatorUtils.toJavaName(dataSourceBean);
+            dsVarName = 'dataSource' + toJavaName(dataSourceBean);
 
             if (!_.contains(res.datasourceBeans, dataSourceBean)) {
                 res.datasourceBeans.push(dataSourceBean);