Skip to content

Commit e435b6e

Browse files
forkiKevinRansom
authored andcommitted
cleanup (#5484)
1 parent 2101df0 commit e435b6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/absil/ilwritepdb.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ let generatePortablePdb (embedAllSource:bool) (embedSourceList:string list) (sou
449449
let convert (content:IEnumerable<Blob>) =
450450
use sha = System.Security.Cryptography.SHA1.Create() // IncrementalHash is core only
451451
let hash = content
452-
|> Seq.map ( fun c -> c.GetBytes().Array |> sha.ComputeHash )
453-
|> Seq.collect id |> Array.ofSeq |> sha.ComputeHash
452+
|> Seq.collect (fun c -> c.GetBytes().Array |> sha.ComputeHash)
453+
|> Array.ofSeq |> sha.ComputeHash
454454
BlobContentId.FromHash(hash)
455455
System.Func<IEnumerable<Blob>, BlobContentId>( convert )
456456

0 commit comments

Comments
 (0)