From 33bc1f6bd986e318f3d7ef41cd87d7a011342051 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Mon, 22 Apr 2024 23:25:43 -0400 Subject: [PATCH] Fix property typo --- .../controller/combination/AdfgxCipherController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/mattrixwv/cipherstream/controller/combination/AdfgxCipherController.java b/src/main/java/com/mattrixwv/cipherstream/controller/combination/AdfgxCipherController.java index ba87a10..77c199b 100644 --- a/src/main/java/com/mattrixwv/cipherstream/controller/combination/AdfgxCipherController.java +++ b/src/main/java/com/mattrixwv/cipherstream/controller/combination/AdfgxCipherController.java @@ -24,9 +24,9 @@ import lombok.extern.slf4j.Slf4j; @RequestMapping("/adfgx") @PropertySource("classpath:ciphers.properties") public class AdfgxCipherController{ - @Value("${cipher.combination.adfgvx.name}") + @Value("${cipher.combination.adfgx.name}") private String adfgxName; - @Value("${cipher.combination.adfgvx.description}") + @Value("${cipher.combination.adfgx.description}") private String adfgxDescription;