diff options
Diffstat (limited to 'crypto/src/util/io/pem/PemObject.cs')
-rw-r--r-- | crypto/src/util/io/pem/PemObject.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/util/io/pem/PemObject.cs b/crypto/src/util/io/pem/PemObject.cs index 41212f997..fce429f39 100644 --- a/crypto/src/util/io/pem/PemObject.cs +++ b/crypto/src/util/io/pem/PemObject.cs @@ -17,7 +17,7 @@ namespace Org.BouncyCastle.Utilities.IO.Pem { } - public PemObject(String type, IList headers, byte[] content) + public PemObject(string type, IList headers, byte[] content) { this.type = type; this.headers = Platform.CreateArrayList(headers); |