From 5cd314335c2e1ff45fc989d2df2a4ee16cb1f109 Mon Sep 17 00:00:00 2001 From: Shannon Date: Wed, 2 Aug 2017 11:56:11 +1000 Subject: [PATCH] formatting --- .../FormsAuthenticationSecureDataFormat.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Umbraco.Web/Security/Identity/FormsAuthenticationSecureDataFormat.cs b/src/Umbraco.Web/Security/Identity/FormsAuthenticationSecureDataFormat.cs index d2c1d6efef..ef858e5264 100644 --- a/src/Umbraco.Web/Security/Identity/FormsAuthenticationSecureDataFormat.cs +++ b/src/Umbraco.Web/Security/Identity/FormsAuthenticationSecureDataFormat.cs @@ -76,13 +76,13 @@ namespace Umbraco.Web.Security.Identity return null; } - var ticket = new AuthenticationTicket(identity, new AuthenticationProperties - { - ExpiresUtc = decrypt.Expiration.ToUniversalTime(), - IssuedUtc = decrypt.IssueDate.ToUniversalTime(), - IsPersistent = decrypt.IsPersistent, - AllowRefresh = true - }); + var ticket = new AuthenticationTicket(identity, new AuthenticationProperties + { + ExpiresUtc = decrypt.Expiration.ToUniversalTime(), + IssuedUtc = decrypt.IssueDate.ToUniversalTime(), + IsPersistent = decrypt.IsPersistent, + AllowRefresh = true + }); return ticket; }