Here you can find the source of formatMillis(long time)
private static String formatMillis(long time)
//package com.java2s; public class Main { private static final String MILLIS = " ms"; private static String formatMillis(long time) { return time + MILLIS; }/* w ww .ja v a2 s. c o m*/ }