From b4acc378e39dc97d2d40693e0e5bec16fb0acfa5 Mon Sep 17 00:00:00 2001 From: Fabio Formosa Date: Tue, 4 Oct 2022 23:23:36 +0200 Subject: [PATCH] #63 removed unused app prop --- .../quartzmanager/security/properties/JwtSecurityProperties.java | 1 - 1 file changed, 1 deletion(-) diff --git a/quartz-manager-parent/quartz-manager-starter-security/src/main/java/it/fabioformosa/quartzmanager/security/properties/JwtSecurityProperties.java b/quartz-manager-parent/quartz-manager-starter-security/src/main/java/it/fabioformosa/quartzmanager/security/properties/JwtSecurityProperties.java index 967f75f..cb5ed70 100644 --- a/quartz-manager-parent/quartz-manager-starter-security/src/main/java/it/fabioformosa/quartzmanager/security/properties/JwtSecurityProperties.java +++ b/quartz-manager-parent/quartz-manager-starter-security/src/main/java/it/fabioformosa/quartzmanager/security/properties/JwtSecurityProperties.java @@ -13,7 +13,6 @@ import org.springframework.context.annotation.Configuration; @Getter @Setter public class JwtSecurityProperties { - private boolean enabled = true; private String secret = RandomStringUtils.randomAlphabetic(10); private long expirationInSec = 28800;