Commit d5ba7f00 authored by Honfika's avatar Honfika

removed unused return value

parent 81e7265f
...@@ -38,7 +38,7 @@ namespace Titanium.Web.Proxy ...@@ -38,7 +38,7 @@ namespace Titanium.Web.Proxy
/// User to server to authenticate requests. /// User to server to authenticate requests.
/// To disable this set ProxyServer.EnableWinAuth to false /// To disable this set ProxyServer.EnableWinAuth to false
/// </summary> /// </summary>
internal async Task<bool> Handle401UnAuthorized(SessionEventArgs args) internal async Task Handle401UnAuthorized(SessionEventArgs args)
{ {
string headerName = null; string headerName = null;
HttpHeader authHeader = null; HttpHeader authHeader = null;
...@@ -137,8 +137,6 @@ namespace Titanium.Web.Proxy ...@@ -137,8 +137,6 @@ namespace Titanium.Web.Proxy
//and server cookies //and server cookies
await HandleHttpSessionRequestInternal(args.WebSession.ServerConnection, args); await HandleHttpSessionRequestInternal(args.WebSession.ServerConnection, args);
} }
return false;
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment