You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/01/17 21:35:55 UTC

[commons-codec] branch master updated (56c0a12 -> 8bfca5c)

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

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


    from 56c0a12  Use isEmpty().
     new 4483cb0  Ignore IML (IntelliJ) files.
     new 8bfca5c  - Make private elements final where possible.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                                   | 1 +
 src/main/java/org/apache/commons/codec/language/bm/Rule.java | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


[commons-codec] 02/02: - Make private elements final where possible.

Posted by gg...@apache.org.
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 8bfca5c4228bb05e94d8027aadefaba92ff124c7
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Jan 17 16:35:51 2021 -0500

    - Make private elements final where possible.
---
 src/main/java/org/apache/commons/codec/language/bm/Rule.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/language/bm/Rule.java b/src/main/java/org/apache/commons/codec/language/bm/Rule.java
index 3ea1ef9..1939945 100644
--- a/src/main/java/org/apache/commons/codec/language/bm/Rule.java
+++ b/src/main/java/org/apache/commons/codec/language/bm/Rule.java
@@ -581,7 +581,7 @@ public class Rule {
         }
 
         return new RPattern() {
-            Pattern pattern = Pattern.compile(regex);
+            final Pattern pattern = Pattern.compile(regex);
 
             @Override
             public boolean isMatch(final CharSequence input) {


[commons-codec] 01/02: Ignore IML (IntelliJ) files.

Posted by gg...@apache.org.
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 4483cb09ec3b30ecb96e502c99292dd44082e8e0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Jan 17 16:35:34 2021 -0500

    Ignore IML (IntelliJ) files.
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 8efa991..b2371c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ target/
 .project
 .classpath
 .externalToolBuilders/*
+/commons-codec.iml