--- /Soundex.java	2023-07-05 02:59:47.914051028 +0200
+++ /Codec-1/src/java/org/apache/commons/codec/language/Soundex.java	2023-07-05 02:59:47.914051028 +0200
@@ -260,6 +260,7 @@
         out[0] = str.charAt(0);
         // getMappingCode() throws IllegalArgumentException
         last = getMappingCode(str, 0);
+ 
         while ((incount < str.length()) && (count < out.length)) {
             mapped = getMappingCode(str, incount++);
             if (mapped != 0) {
