Skip to content

Commit

Permalink
ArC - make io.quarkus.arc.runtime.InterceptorBindings final
Browse files Browse the repository at this point in the history
  • Loading branch information
mkouba committed Mar 29, 2023
1 parent 423ec03 commit fc289f1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
import io.quarkus.arc.AbstractAnnotationLiteral;
import io.quarkus.arc.ArcInvocationContext;

public class InterceptorBindings {
/**
*
* @see ArcInvocationContext#getInterceptorBindings()
*/
public final class InterceptorBindings {

@SuppressWarnings("unchecked")
public static Set<Annotation> getInterceptorBindings(InvocationContext invocationContext) {
Expand Down

0 comments on commit fc289f1

Please sign in to comment.