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

io.perfmark.impl.SecretMarkerFactory Maven / Gradle / Ivy

There is a newer version: 0.27.0
Show newest version
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");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy