From 48d0d068d10e506360bb45cb4174acf9c646dcad Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 20 Apr 2017 15:44:51 -0400 Subject: [PATCH] try inline out again --- src/App/Models/CipherString.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App/Models/CipherString.cs b/src/App/Models/CipherString.cs index 37030b54b..344f1b1ac 100644 --- a/src/App/Models/CipherString.cs +++ b/src/App/Models/CipherString.cs @@ -19,8 +19,7 @@ namespace Bit.App.Models var headerPieces = encryptedString.Split('.'); string[] encPieces; - EncryptionType encType; - if(headerPieces.Length == 2 && Enum.TryParse(headerPieces[0], out encType)) + if(headerPieces.Length == 2 && Enum.TryParse(headerPieces[0], out EncryptionType encType)) { EncryptionType = encType; encPieces = headerPieces[1].Split('|');