summary refs log tree commit diff
path: root/crypto/src/math/ec/ECCurve.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/math/ec/ECCurve.cs')
-rw-r--r--crypto/src/math/ec/ECCurve.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/ec/ECCurve.cs b/crypto/src/math/ec/ECCurve.cs
index 52d634cd2..838e407e3 100644
--- a/crypto/src/math/ec/ECCurve.cs
+++ b/crypto/src/math/ec/ECCurve.cs
@@ -843,14 +843,14 @@ namespace Org.BouncyCastle.Math.EC
 
         int AsInteger(string envVariable, int defaultValue)
         {
-            String v = Platform.GetEnvironmentVariable(envVariable);
+            string v = Platform.GetEnvironmentVariable(envVariable);
 
             if (v == null)
             {
                 return defaultValue;
             }
 
-            return Int32.Parse(v);
+            return int.Parse(v);
         }
     }