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-text.git

commit 0abb54dfd98363e55d3cadd0de21d062436c4e4e
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Aug 23 09:14:36 2023 -0400

    Constructor package-private -> private
---
 src/changes/changes.xml                                                 | 1 +
 .../java/org/apache/commons/text/lookup/UrlDecoderStringLookup.java     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index e8be52d2..9e610940 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -64,6 +64,7 @@ The <action> type attribute can be add,update,fix,remove.
     <action                  type="fix" dev="ggregory" due-to="Dimitrios 
Efthymiou, Gary Gregory">Add null-check in 
RandomStringGenerator#Builder#withinRange() to avoid 
NullPointerException.</action>
     <action issue="TEXT-228" type="fix" dev="ggregory" due-to="Alex Herbert, 
Gary Gregory">Fix TextStringBuilder to over-allocate when ensuring capacity 
#452.</action>
     <action                  type="fix" dev="ggregory" due-to="Elliotte Rusty 
Harold, Gary Gregory">Constructor for ResourceBundleStringLookup should be 
private instead of package-private.</action>
+    <action                  type="fix" dev="ggregory" due-to="Elliotte Rusty 
Harold, Gary Gregory">Constructor for UrlDecoderStringLookup should be private 
instead of package-private.</action>
     <!-- ADD -->
     <action issue="TEXT-224" type="add" dev="ggregory" due-to="PJ Fanning, 
Gary Gregory">Set SecureProcessing feature in XmlStringLookup by 
default.</action>
     <action issue="TEXT-224" type="add" dev="ggregory" due-to="Gary 
Gregory">Add StringLookupFactory.xmlStringLookup(Map&lt;String, 
Boolean&gt;...).</action>
diff --git 
a/src/main/java/org/apache/commons/text/lookup/UrlDecoderStringLookup.java 
b/src/main/java/org/apache/commons/text/lookup/UrlDecoderStringLookup.java
index d2b99d4a..49fe0b20 100644
--- a/src/main/java/org/apache/commons/text/lookup/UrlDecoderStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/UrlDecoderStringLookup.java
@@ -38,7 +38,7 @@ final class UrlDecoderStringLookup extends 
AbstractStringLookup {
     /**
      * This ctor is not private to allow Mockito spying.
      */
-    UrlDecoderStringLookup() {
+    private UrlDecoderStringLookup() {
         // empty
     }
 

Reply via email to