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 2018/03/06 20:52:53 UTC

commons-io git commit: Redundant superinterface Serializable for the type IOCase, already defined by Enum.

Repository: commons-io
Updated Branches:
  refs/heads/master 8993c0060 -> 48f7e179e


Redundant superinterface Serializable for the type IOCase, already
defined by Enum<IOCase>.

Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/48f7e179
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/48f7e179
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/48f7e179

Branch: refs/heads/master
Commit: 48f7e179e4c5f4e59afdf0bfb4ec5228692e00ec
Parents: 8993c00
Author: Gary Gregory <ga...@gmail.com>
Authored: Tue Mar 6 13:52:49 2018 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Tue Mar 6 13:52:49 2018 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/commons/io/IOCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-io/blob/48f7e179/src/main/java/org/apache/commons/io/IOCase.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/IOCase.java b/src/main/java/org/apache/commons/io/IOCase.java
index 58e96a5..a1ee69b 100644
--- a/src/main/java/org/apache/commons/io/IOCase.java
+++ b/src/main/java/org/apache/commons/io/IOCase.java
@@ -33,7 +33,7 @@ import java.io.Serializable;
  *
  * @since 1.3
  */
-public enum IOCase implements Serializable {
+public enum IOCase {
 
     /**
      * The constant for case sensitive regardless of operating system.