Skip to content

Commit

Permalink
Remove left-over debugging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersAbel committed Mar 22, 2020
1 parent 5071ab1 commit 5d38ece
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions Samples/SampleOwinApplication/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ public class HomeController : Controller
{
public ActionResult Index()
{
var ctx = HttpContext.GetOwinContext();

return View();
}

Expand Down
8 changes: 0 additions & 8 deletions Samples/SampleOwinApplication/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ public partial class Startup
{
public void Configuration(IAppBuilder app)
{
app.Map("/foo", a =>
{
a.Use((ctx, next) =>
{
return next.Invoke();
});
});

ConfigureAuth(app);
}
}
Expand Down

0 comments on commit 5d38ece

Please sign in to comment.