Merge pull request #3273 from oglueck/jetty-9.4.x

make JAASPrincipal thread-safe
This commit is contained in:
Simone Bordet 2019-01-18 17:20:08 +01:00 committed by GitHub
commit afa708a6b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class JAASPrincipal implements Principal, Serializable
{
private static final long serialVersionUID = -5538962177019315479L;
private String _name = null;
private final String _name;
public JAASPrincipal(String userName)
{