From 9d254b64c92c282907862f89b8cb5cd5b3e9dfe2 Mon Sep 17 00:00:00 2001 From: Kim Schultz Date: Thu, 27 Jul 2017 09:49:53 +0200 Subject: [PATCH] Updated from CR line breaks to CR LF line breaks --- MVC2App/Controllers/AiHandleErrorAttribute.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MVC2App/Controllers/AiHandleErrorAttribute.cs b/MVC2App/Controllers/AiHandleErrorAttribute.cs index f2f8f73..c727151 100644 --- a/MVC2App/Controllers/AiHandleErrorAttribute.cs +++ b/MVC2App/Controllers/AiHandleErrorAttribute.cs @@ -1,10 +1,10 @@ -using System; +using System; using System.Web.Mvc; using Microsoft.ApplicationInsights; namespace MVC2App.Controllers { - [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = true)] + [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = true)] public class AiHandleErrorAttribute : HandleErrorAttribute { public override void OnException(ExceptionContext filterContext) @@ -16,9 +16,9 @@ public override void OnException(ExceptionContext filterContext) { var ai = new TelemetryClient(); ai.TrackException(filterContext.Exception); - } + } } base.OnException(filterContext); } } -} \ No newline at end of file +}