it's redundant for applyDefaults() to return anything. thx tschaub

git-svn-id: http://svn.openlayers.org/trunk/openlayers@1255 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-08-16 19:16:46 +00:00
parent 65f9ae8eac
commit 748234606e
2 changed files with 1 additions and 4 deletions

View File

@@ -240,8 +240,6 @@ OpenLayers.Util.upperCaseObject = function (object) {
*
* @param {Object} to
* @param {Object} from
*
* @type Object
*/
OpenLayers.Util.applyDefaults = function (to, from) {
for (var key in from) {
@@ -249,7 +247,6 @@ OpenLayers.Util.applyDefaults = function (to, from) {
to[key] = from[key];
}
}
return to;
};
/**