diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-05 23:17:40 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-05 23:17:40 +0700 |
commit | f5c5119255ce14081009a3dc9ccc1427c78f47a3 (patch) | |
tree | 2afd90b47aee6697b359c9e066f1e2dbfea8f678 /crypto/src/util | |
parent | Use generics in Enums (diff) | |
download | BouncyCastle.NET-ed25519-f5c5119255ce14081009a3dc9ccc1427c78f47a3.tar.xz |
Remove Times class
Diffstat (limited to 'crypto/src/util')
-rw-r--r-- | crypto/src/util/Times.cs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/crypto/src/util/Times.cs b/crypto/src/util/Times.cs deleted file mode 100644 index 99a78d21a..000000000 --- a/crypto/src/util/Times.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; - -namespace Org.BouncyCastle.Utilities -{ - public sealed class Times - { - private static long NanosecondsPerTick = 100L; - - public static long NanoTime() - { - return DateTime.UtcNow.Ticks * NanosecondsPerTick; - } - } -} |