Skip to content

Commit be2d145

Browse files
committed
Remove redundant interface
1 parent c99a6be commit be2d145

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

log4j-api/src/main/java/org/apache/logging/log4j/internal/map/UnmodifiableArrayBackedMap.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717
package org.apache.logging.log4j.internal.map;
1818

19-
import java.io.Serializable;
2019
import java.util.AbstractMap;
2120
import java.util.AbstractSet;
2221
import java.util.Collection;
@@ -57,7 +56,7 @@
5756
* </ul>
5857
*
5958
*/
60-
public class UnmodifiableArrayBackedMap extends AbstractMap<String, String> implements Serializable, ReadOnlyStringMap {
59+
public class UnmodifiableArrayBackedMap extends AbstractMap<String, String> implements ReadOnlyStringMap {
6160
/**
6261
* Implementation of Map.Entry. The implementation is simple since each instance
6362
* contains an index in the array, then getKey() and getValue() retrieve from

0 commit comments

Comments
 (0)