removed deprecation from getJwtSettingsFromYml

This commit is contained in:
YevhenBondarenko 2024-04-29 16:18:49 +02:00
parent 1a61e4d064
commit 6fd0e13516

View File

@ -115,7 +115,6 @@ public class DefaultJwtSettingsService implements JwtSettingsService {
return this.jwtSettings;
}
@Deprecated(since = "3.7.0", forRemoval = true)
private JwtSettings getJwtSettingsFromYml() {
return new JwtSettings(this.tokenExpirationTime, this.refreshTokenExpTime, this.tokenIssuer, this.tokenSigningKey);
}