Skip to content

Commit ff2c662

Browse files
committed
Update from bc-java
1 parent ef229ed commit ff2c662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/src/util/io/pem/PemReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private PemObject LoadObject(string type)
6868
int colonPos = line.IndexOf(':');
6969
if (colonPos >= 0)
7070
{
71-
string hdr = line.Substring(0, colonPos).Trim();
71+
string hdr = line.Substring(0, colonPos);
7272
string val = line.Substring(colonPos + 1).Trim();
7373

7474
headers.Add(new PemHeader(hdr, val));

0 commit comments

Comments
 (0)