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 2020/11/21 17:30:40 UTC

[commons-configuration] branch master updated: Remove redundant modifiers like private on enum constructors.

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


The following commit(s) were added to refs/heads/master by this push:
     new e11f0b5  Remove redundant modifiers like private on enum constructors.
e11f0b5 is described below

commit e11f0b5f8cddd9c6996616d32ab33c0e6533041f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:30:34 2020 -0500

    Remove redundant modifiers like private on enum constructors.
---
 .../java/org/apache/commons/configuration2/interpol/DefaultLookups.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java b/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
index f12bf21..af6caed 100644
--- a/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
+++ b/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
@@ -198,7 +198,7 @@ public enum DefaultLookups
      * @param lookup
      *            the {@code Lookup} instance
      */
-    private DefaultLookups(final String prefix, final Lookup lookup)
+    DefaultLookups(final String prefix, final Lookup lookup)
     {
         this.prefix = prefix;
         this.lookup = lookup;