Skip to content

Commit

Permalink
Fix sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
olevitt committed Dec 12, 2024
1 parent b1a0931 commit b9943d5
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
@Component
public class LogUserInfoFilter extends OncePerRequestFilter {

@Autowired private UserProvider userProvider;
private UserProvider userProvider;

@Autowired private RegionsConfiguration regionsConfiguration;
private RegionsConfiguration regionsConfiguration;

@Autowired
public LogUserInfoFilter(UserProvider userProvider, RegionsConfiguration regionsConfiguration) {
this.userProvider = userProvider;
this.regionsConfiguration = regionsConfiguration;
}

@Override
protected void doFilterInternal(
Expand Down

0 comments on commit b9943d5

Please sign in to comment.