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:37:33 UTC

[commons-configuration] branch master updated: Remove redundant modifiers like static on enums.

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 0b72df8  Remove redundant modifiers like static on enums.
0b72df8 is described below

commit 0b72df8d9741c8a10ee9b3361c06314df341c53c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:37:28 2020 -0500

    Remove redundant modifiers like static on enums.
---
 .../java/org/apache/commons/configuration2/SynchronizerTestImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java b/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java
index 4c2d9eb..76e1f2f 100644
--- a/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java
+++ b/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java
@@ -152,7 +152,7 @@ public class SynchronizerTestImpl implements Synchronizer
     /**
      * An enumeration with the methods of the Synchronizer which can be called.
      */
-    public static enum Methods
+    public enum Methods
     {
         BEGIN_READ, END_READ, BEGIN_WRITE, END_WRITE
     }