Skip to content

Commit

Permalink
Sonar: Remove this use of 'setCookieName'; it is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Aug 12, 2023
1 parent dbd180f commit 18b07a5
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ public class AngularCookieLocaleResolver extends CookieLocaleResolver {
*/
public static final String QUOTE = "%22";

public AngularCookieLocaleResolver() {
super();
}

public AngularCookieLocaleResolver(String cookieName) {
super(cookieName);
}

/**
* {@inheritDoc}
*/
Expand Down

0 comments on commit 18b07a5

Please sign in to comment.