X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..refs/heads/master:/docs/source/HashMap.html
diff --git a/docs/source/HashMap.html b/docs/source/HashMap.html
index 3285bfde..6546b677 100644
--- a/docs/source/HashMap.html
+++ b/docs/source/HashMap.html
@@ -3,8 +3,8 @@
The source code
-
-
+
+
@@ -39,6 +39,9 @@ map.each(function(key, value, length){
* </p>
*/
Ext.define('Ext.util.HashMap', {
+ mixins: {
+ observable: 'Ext.util.Observable'
+ },
/**
* @cfg {Function} keyFn A function that is used to retrieve a default key for a passed object.
@@ -46,10 +49,6 @@ Ext.define('Ext.util.HashMap', {
* if the add method is called with a single argument.
*/
- mixins: {
- observable: 'Ext.util.Observable'
- },
-
/**
* Creates new HashMap.
* @param {Object} config (optional) Config object.
@@ -157,7 +156,7 @@ Ext.define('Ext.util.HashMap', {
}
if (me.containsKey(key)) {
- me.replace(key, value);
+ return me.replace(key, value);
}
data = me.getData(key, value);