Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/j2me/org/bouncycastle/util/Times.java')
-rw-r--r--core/src/main/j2me/org/bouncycastle/util/Times.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/src/main/j2me/org/bouncycastle/util/Times.java b/core/src/main/j2me/org/bouncycastle/util/Times.java
deleted file mode 100644
index d21518fa..00000000
--- a/core/src/main/j2me/org/bouncycastle/util/Times.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package org.bouncycastle.util;
-
-public final class Times
-{
- private static long NANOS_PER_MILLI = 1000000L;
-
- public static long nanoTime()
- {
- return NANOS_PER_MILLI * System.currentTimeMillis();
- }
-}