feline/src/main/java/com/spotify/feline/FelineThreadLocalTransformer.java [59:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.matcher = matcher;
  }

  @Override
  public Builder<?> transform(
      final Builder<?> builder,
      final TypeDescription typeDescription,
      final ClassLoader classLoader,
      final JavaModule javaModule,
      final ProtectionDomain protectionDomain) {

    return builder.visit(Advice.to(FutureCallAdvice.class).on(matcher));
  }

  static class FutureCallAdvice {

    @Advice.OnMethodEnter
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



feline/src/main/java/com/spotify/feline/FelineTransformer.java [67:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.matcher = matcher;
  }

  @Override
  public Builder<?> transform(
      final Builder<?> builder,
      final TypeDescription typeDescription,
      final ClassLoader classLoader,
      final JavaModule javaModule,
      final ProtectionDomain protectionDomain) {
    return builder.visit(Advice.to(FutureCallAdvice.class).on(matcher));
  }

  static class FutureCallAdvice {

    @Advice.OnMethodEnter
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



