Removed checkstyle warnings.
[bgpcep.git] / programming / api / src / main / java / org / opendaylight / bgpcep / programming / NanotimeUtil.java
index d0af3c35be62d98839052ab76a1d98b54522dd1d..dc658080a9b9c092e365149f4a69724cf16e06af 100644 (file)
@@ -17,50 +17,50 @@ import org.slf4j.LoggerFactory;
  * Util methods for {@link Nanotime}.
  */
 public final class NanotimeUtil {
-       private static final Logger LOG = LoggerFactory.getLogger(NanotimeUtil.class);
-       private static final BigInteger MILLION = BigInteger.valueOf(1000000);
-       private static volatile BigInteger nanoTimeOffset = null;
+    private static final Logger LOG = LoggerFactory.getLogger(NanotimeUtil.class);
+    private static final BigInteger MILLION = BigInteger.valueOf(1000000);
+    private static volatile BigInteger nanoTimeOffset = null;
 
-       private NanotimeUtil() {
-       }
+    private NanotimeUtil() {
+    }
 
-       /**
-        * Returns current time in nanoseconds.
-        * 
-        * @return Nanotime object filled with current time in nanoseconds.
-        */
-       public static Nanotime currentTime() {
-               return new Nanotime(BigInteger.valueOf(System.currentTimeMillis()).multiply(MILLION));
-       }
+    /**
+     * Returns current time in nanoseconds.
+     *
+     * @return Nanotime object filled with current time in nanoseconds.
+     */
+    public static Nanotime currentTime() {
+        return new Nanotime(BigInteger.valueOf(System.currentTimeMillis()).multiply(MILLION));
+    }
 
-       /**
-        * Returns calibrated current JVM nano time.
-        * 
-        * @return Nanotime object filled with current JVM nano time.
-        */
-       public static Nanotime currentNanoTime() {
-               if (nanoTimeOffset == null) {
-                       calibrate();
-               }
-               return new Nanotime(BigInteger.valueOf(System.nanoTime()).add(nanoTimeOffset));
-       }
+    /**
+     * Returns calibrated current JVM nano time.
+     *
+     * @return Nanotime object filled with current JVM nano time.
+     */
+    public static Nanotime currentNanoTime() {
+        if (nanoTimeOffset == null) {
+            calibrate();
+        }
+        return new Nanotime(BigInteger.valueOf(System.nanoTime()).add(nanoTimeOffset));
+    }
 
-       /**
-        * Calibrates the offset between the real-time clock providing System.currentTimeMillis() and the monotonic clock
-        * providing System.nanoTime(). This method should be called whenever there is a hint of the two diverging: either
-        * when time shifts or periodically.
-        */
-       public static void calibrate() {
-               final long tm1 = System.currentTimeMillis();
-               final long nt1 = System.nanoTime();
-               final long tm2 = System.currentTimeMillis();
-               final long nt2 = System.nanoTime();
+    /**
+     * Calibrates the offset between the real-time clock providing System.currentTimeMillis() and the monotonic clock
+     * providing System.nanoTime(). This method should be called whenever there is a hint of the two diverging: either
+     * when time shifts or periodically.
+     */
+    public static void calibrate() {
+        final long tm1 = System.currentTimeMillis();
+        final long nt1 = System.nanoTime();
+        final long tm2 = System.currentTimeMillis();
+        final long nt2 = System.nanoTime();
 
-               LOG.debug("Calibrated currentTime and nanoTime to {}m <= {}n <= {}m <= {}n", tm1, nt1, tm2, nt2);
+        LOG.debug("Calibrated currentTime and nanoTime to {}m <= {}n <= {}m <= {}n", tm1, nt1, tm2, nt2);
 
-               final BigInteger tm = BigInteger.valueOf(tm1).add(BigInteger.valueOf(tm2)).divide(BigInteger.valueOf(2));
-               final BigInteger nt = BigInteger.valueOf(nt1).add(BigInteger.valueOf(nt2)).divide(BigInteger.valueOf(2));
+        final BigInteger tm = BigInteger.valueOf(tm1).add(BigInteger.valueOf(tm2)).divide(BigInteger.valueOf(2));
+        final BigInteger nt = BigInteger.valueOf(nt1).add(BigInteger.valueOf(nt2)).divide(BigInteger.valueOf(2));
 
-               nanoTimeOffset = tm.multiply(MILLION).subtract(nt);
-       }
+        nanoTimeOffset = tm.multiply(MILLION).subtract(nt);
+    }
 }