adds deprecated methods back

This commit is contained in:
Andy Gup 2015-03-17 18:54:25 -06:00
parent 32f22247f2
commit 2a829dde6f
2 changed files with 25 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -2195,6 +2195,30 @@ O.esri.Edit.EditStore = function () {
this._isEditDuplicated = function (newEdit, edits) {
return "DEPRECATED at v2.5!";
};
/**
* Deprecated @ v2.5.
* @returns {string}
*/
this.retrieveEditsQueue = function(){
return "DEPRECATED at v2.5!";
};
/**
* Deprecated @ v2.5.
* @returns {string}
*/
this.getEditsStoreSizeBytes = function(){
return "DEPRECATED at v2.5!";
};
/**
* Deprecated @ v2.5.
* @returns {string}
*/
this.getLocalStorageSizeBytes = function(){
return "DEPRECATED at v2.5!";
};
};