Skip to content
Snippets Groups Projects
Commit beef3693 authored by Julian Hochstetter's avatar Julian Hochstetter
Browse files

remove debug output

parent f907ce0d
......@@ -37,8 +37,6 @@ public class CasUserDetailsService extends AbstractCasAssertionUserDetailsServic
final List<GrantedAuthority> grantedAuthorities = new ArrayList<GrantedAuthority>();
grantedAuthorities.add(new GrantedAuthorityImpl("ROLE_USER"));
System.out.println(assertion.getPrincipal().getName());
return new User(assertion.getPrincipal().getName(), "", true, true, true, true, grantedAuthorities);
}
}
......@@ -35,8 +35,6 @@ public class OpenidUserDetailsService implements UserDetailsService {
final List<GrantedAuthority> grantedAuthorities = new ArrayList<GrantedAuthority>();
grantedAuthorities.add(new GrantedAuthorityImpl("ROLE_USER"));
System.out.println(openIdIdentifier);
return new User(openIdIdentifier, "", true, true, true, true, grantedAuthorities);
}
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment