Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
refactor :: SecurityConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Apr 12, 2024
1 parent 82e6d18 commit feab592
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.daemawiki.domain.user.model.User;
import org.daemawiki.security.JwtWebFilter;
import org.daemawiki.security.TokenizerImpl;
import org.daemawiki.security.Tokenizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity;
Expand All @@ -15,9 +15,9 @@
@Configuration
@EnableWebFluxSecurity
public class SecurityConfig {
private final TokenizerImpl tokenizer;
private final Tokenizer tokenizer;

public SecurityConfig(TokenizerImpl tokenizer) {
public SecurityConfig(Tokenizer tokenizer) {
this.tokenizer = tokenizer;
}

Expand Down

0 comments on commit feab592

Please sign in to comment.