Skip to content

Commit

Permalink
updated to deal with private function process response
Browse files Browse the repository at this point in the history
  • Loading branch information
rodsimpson committed Aug 10, 2012
1 parent 156e6a6 commit 9b949cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/apigee.appSDK.js
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ apigee.validation = (function () {
var self = this;
this.setAllQueryParams(method, path, this.getData(), null,
function(response) {
if (self.processResponse(self, response)){
if (processResponse(self, response)){
if (typeof(successCallback) == "function"){
successCallback(response);
}
Expand Down Expand Up @@ -1707,7 +1707,7 @@ apigee.validation = (function () {
var self = this;
this.setAllQueryParams('GET', path, null, null,
function(response) {
if (self.processResponse(self, response)){
if (processResponse(self, response)){
if (typeof(successCallback) == "function"){
successCallback(response);
}
Expand Down

0 comments on commit 9b949cc

Please sign in to comment.