From 6ffa502e8aff778896f95d4bb042084b1741af35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9Fra=20Larlar?= Date: Fri, 30 Jan 2026 16:19:47 +0300 Subject: [PATCH] Errors are fixed in Cipher and tested in CipherTest to reach the desired output. --- Cipher.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cipher.java b/Cipher.java index 7527c5b..5eeab8d 100644 --- a/Cipher.java +++ b/Cipher.java @@ -58,4 +58,5 @@ private char replaceChar(char inputChar, boolean isEncrypt) { // if we did not find it in the alphabet, then return the original char return inputChar; } -} \ No newline at end of file + +}