From 2bec0d8bfc9f32a64b76a8cf15d6d496f7c18b90 Mon Sep 17 00:00:00 2001 From: Per Lundberg Date: Thu, 4 Jan 2024 23:51:07 +0200 Subject: [PATCH] Fix typo in Javadocs (#1578) --- .../java/net/bytebuddy/implementation/MethodDelegation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byte-buddy-dep/src/main/java/net/bytebuddy/implementation/MethodDelegation.java b/byte-buddy-dep/src/main/java/net/bytebuddy/implementation/MethodDelegation.java index fd0a0cd912..4354949149 100644 --- a/byte-buddy-dep/src/main/java/net/bytebuddy/implementation/MethodDelegation.java +++ b/byte-buddy-dep/src/main/java/net/bytebuddy/implementation/MethodDelegation.java @@ -75,7 +75,7 @@ *
  • {@link net.bytebuddy.implementation.bind.annotation.Default}: A parameter that is annotated with * this annotation is assigned a proxy that allows calling an instrumented type's directly implemented interfaces' * default methods.
  • - *
  • {@link net.bytebuddy.implementation.bind.annotation.SuperCall}: A parameter + *
  • {@link net.bytebuddy.implementation.bind.annotation.DefaultCall}: A parameter * of {@code Qux#baz} that is annotated with {@code SuperCall} will be assigned an instance of a type implementing both * {@link java.lang.Runnable} and {@link java.util.concurrent.Callable} which will invoke the instrumented method on the * invocation of either interface's method. The call is made using the original arguments of the method invocation.