io.perfmark.impl.SecretMarkerFactory 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;
import javax.annotation.Nullable;
final class SecretMarkerFactory {
public static final class MarkerFactory {
public static Marker createMarker(String taskName, @Nullable StackTraceElement location) {
return new Marker(taskName, location);
}
private MarkerFactory() {
throw new AssertionError("nope");
}
}
private SecretMarkerFactory() {
throw new AssertionError("nope");
}
}