This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit ff49d981d0030dcf6bc2e116f047a6b59fc5d085
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon May 19 09:58:37 2025 -0400

    Don't initialize instance variables to their default values
---
 .../java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java   | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java 
b/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java
index 7734d057..3009bdf9 100644
--- a/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java
+++ b/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java
@@ -83,8 +83,6 @@ public class DaitchMokotoffSoundex implements StringEncoder {
 
         private Branch() {
             builder = new StringBuilder();
-            lastReplacement = null;
-            cachedString = null;
         }
 
         /**

Reply via email to