io.perfmark.impl.Internal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfmark-impl Show documentation
Show all versions of perfmark-impl Show documentation
PerfMark Implementation API
package io.perfmark.impl;
public final class Internal {
public static Marker createMarker(String taskName) {
return new Marker(taskName, null);
}
private Internal() {
throw new AssertionError("nope");
}
}