Here you can find the source of nanoToMsConverter(long time)
public static double nanoToMsConverter(long time)
//package com.java2s; public class Main { public static final int ITER_1M = 1000 * 1000; public static double nanoToMsConverter(long time) { return time / ITER_1M; }/*from ww w .j a v a 2 s . com*/ }