You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2019/06/17 19:53:44 UTC

[commons-codec] branch master updated: Obsolete comment

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 128c93c  Obsolete comment
128c93c is described below

commit 128c93c26e963dafe1165e593d4351402a0206d3
Author: Sebb <se...@apache.org>
AuthorDate: Mon Jun 17 20:53:35 2019 +0100

    Obsolete comment
---
 src/main/java/org/apache/commons/codec/language/ColognePhonetic.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java b/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java
index 3118555..d1ebadb 100644
--- a/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java
+++ b/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java
@@ -328,7 +328,6 @@ public class ColognePhonetic implements StringEncoder {
                 nextChar = CHAR_IGNORE;
             }
 
-            // OK to ignore H here because it only affects nextChar which has already been set up
             if (chr < 'A' || chr > 'Z') {
                     continue; // ignore unwanted characters
             }