Skip to content

Commit

Permalink
remove redundant return type from ProcessRequest()
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailTymchukDX committed May 30, 2016
1 parent 7602f94 commit d32a6f5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ XhrType ParseRequest(out string fileId) {
return XhrType.None;
}

bool ProcessRequest() {
void ProcessRequest() {
string fileId;
var xhrType = ParseRequest(out fileId);

Expand Down Expand Up @@ -316,10 +316,8 @@ bool ProcessRequest() {
}

Page.Response.End();
return true;
}

return false;
}

void XhrStart() {
Expand Down

0 comments on commit d32a6f5

Please sign in to comment.