Remove Serializable from OAuth2User

Fixes gh-4514
This commit is contained in:
Joe Grandja 2017-09-01 17:20:00 -04:00
parent d9bad2bc9d
commit 223b126de5
1 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ import org.springframework.security.core.AuthenticatedPrincipal;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
@ -47,7 +46,7 @@ import java.util.Map;
* @see DefaultOAuth2User
* @see AuthenticatedPrincipal
*/
public interface OAuth2User extends AuthenticatedPrincipal, Serializable {
public interface OAuth2User extends AuthenticatedPrincipal {
Collection<? extends GrantedAuthority> getAuthorities();