com.central1.profiler.reporting.Format Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-profiler Show documentation
Show all versions of maven-profiler Show documentation
Log and POST module execution times
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());
}
}