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

ignite git commit: IGNITE-843 Fix for java.lang.Object type.

Repository: ignite
Updated Branches:
  refs/heads/ignite-843 7c6ef2d0d -> b24c45178


IGNITE-843 Fix for java.lang.Object type.


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

Branch: refs/heads/ignite-843
Commit: b24c451786ad61139411b8fe2f93a2a220e331de
Parents: 7c6ef2d
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Mon Aug 31 17:02:40 2015 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Mon Aug 31 17:02:40 2015 +0700

----------------------------------------------------------------------
 modules/control-center-web/src/main/js/helpers/data-structures.js | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b24c4517/modules/control-center-web/src/main/js/helpers/data-structures.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/helpers/data-structures.js b/modules/control-center-web/src/main/js/helpers/data-structures.js
index 49ec429..7eeca24 100644
--- a/modules/control-center-web/src/main/js/helpers/data-structures.js
+++ b/modules/control-center-web/src/main/js/helpers/data-structures.js
@@ -63,6 +63,7 @@ $dataStructures.JAVA_BUILD_IN_CLASSES = [
     {short: 'Float', full: 'java.lang.Float'},
     {short: 'Integer', full: 'java.lang.Integer'},
     {short: 'Long', full: 'java.lang.Long'},
+    {short: 'Object', full: 'java.lang.Object'},
     {short: 'Short', full: 'java.lang.Short'},
     {short: 'String', full: 'java.lang.String'},
     {short: 'Time', full: 'java.sql.Time'},