All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.central1.profiler.reporting.Format Maven / Gradle / Ivy

The newest version!
package com.central1.profiler.reporting;

import com.google.common.base.Stopwatch;

/**
 * Full credit to jcgay on github for the original maven-profiler
 *
 * Licensed under MIT
 *
 * Modifications by Delan Elliot ([email protected])
 */
public class Format {

    private Format() {
    }

    public static String ms(Stopwatch time) {
        if (time == null) {
            return null;
        }
        return String.valueOf(time.elapsedMillis());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy