From d32a6f537783d3e0f19b5fefe415e99601912650 Mon Sep 17 00:00:00 2001 From: Mikhail Tymchuk Date: Mon, 30 May 2016 15:40:22 +0300 Subject: [PATCH] remove redundant return type from ProcessRequest() --- AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs b/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs index aa4828883..738963b41 100644 --- a/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs +++ b/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs @@ -280,7 +280,7 @@ XhrType ParseRequest(out string fileId) { return XhrType.None; } - bool ProcessRequest() { + void ProcessRequest() { string fileId; var xhrType = ParseRequest(out fileId); @@ -316,10 +316,8 @@ bool ProcessRequest() { } Page.Response.End(); - return true; } - return false; } void XhrStart() {