Skip to content

Commit

Permalink
Avoid autoboxing
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Aug 25, 2021
1 parent 44b72fe commit e6fecca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private Interceptors() {
static InterceptorInfo createInterceptor(ClassInfo interceptorClass, BeanDeployment beanDeployment,
InjectionPointModifier transformer, AnnotationStore store) {
Set<AnnotationInstance> bindings = new HashSet<>();
Integer priority = 0;
int priority = 0;
boolean priorityDeclared = false;
for (AnnotationInstance annotation : store.getAnnotations(interceptorClass)) {
bindings.addAll(beanDeployment.extractInterceptorBindings(annotation));
Expand Down

0 comments on commit e6fecca

Please sign in to comment.