Automatic reformat.

This commit is contained in:
Olga Maciaszek-Sharma
2020-10-28 18:39:20 +01:00
parent d93defe1c1
commit 20e2548a5d

View File

@@ -175,8 +175,7 @@ public class FeignClientFactoryBean implements FactoryBean<Object>, Initializing
Map<String, RequestInterceptor> requestInterceptors = getInheritedAwareInstances(context,
RequestInterceptor.class);
if (requestInterceptors != null) {
List<RequestInterceptor> interceptors = new ArrayList<>(
requestInterceptors.values());
List<RequestInterceptor> interceptors = new ArrayList<>(requestInterceptors.values());
AnnotationAwareOrderComparator.sort(interceptors);
builder.requestInterceptors(interceptors);
}