public BenchmarkConfiguration finish()

in TransformCore/src/main/java/com/facebook/ads/injkit/benchmark/BenchmarkConfigurationParser.java [41:50]


  public BenchmarkConfiguration finish(ParseContext ctx)
      throws InvalidAnnotationProcessorConfigurationException {
    if (!benchmarkEnabled.isSet() || !benchmarkEnabled.asBoolean(ctx)) {
      return BenchmarkConfiguration.makeDisabled(
          benchmarkAnnotationClass.isSet() ? benchmarkAnnotationClass.getValue(ctx) : null);
    }

    return BenchmarkConfiguration.makeEnabled(
        benchmarkAnnotationClass.getValue(ctx), benchmarkReceiverClass.getValue(ctx));
  }