From a8b23f9debd6c5cd57f3122f7febc7b572787759 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 10 Nov 2015 13:03:33 -0800 Subject: [PATCH] Fix import order --- .../boot/autoconfigure/social/SocialWebAutoConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/SocialWebAutoConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/SocialWebAutoConfiguration.java index a8a246255fb..9c6551d82cd 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/SocialWebAutoConfiguration.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/SocialWebAutoConfiguration.java @@ -18,7 +18,6 @@ package org.springframework.boot.autoconfigure.social; import java.util.List; -import org.springframework.core.Ordered; import org.thymeleaf.spring4.SpringTemplateEngine; import org.springframework.beans.factory.annotation.Autowired; @@ -35,6 +34,7 @@ import org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfigurati import org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; +import org.springframework.core.Ordered; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContext; import org.springframework.security.core.context.SecurityContextHolder;