소스 검색

Apply suggestions from code review

Co-authored-by: Cody Robibero <cody@robibe.ro>
Bond-009 4 년 전
부모
커밋
4cea6d9ccf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      MediaBrowser.Common/Cryptography/PasswordHash.cs

+ 2 - 2
MediaBrowser.Common/Cryptography/PasswordHash.cs

@@ -123,7 +123,7 @@ namespace MediaBrowser.Common.Cryptography
                     int splitIndex = parameter.IndexOf('=');
                     if (splitIndex == -1 || splitIndex == 0 || splitIndex == parameter.Length - 1)
                     {
-                        throw new FormatException($"Malformed parameter in password hash string");
+                        throw new FormatException("Malformed parameter in password hash string");
                     }
 
                     (parameters ??= new Dictionary<string, string>()).Add(
@@ -143,7 +143,7 @@ namespace MediaBrowser.Common.Cryptography
 
             if (nextSegment == 0)
             {
-                throw new FormatException($"Hash string contains an empty segment");
+                throw new FormatException("Hash string contains an empty segment");
             }
 
             byte[] hash;