Skip to content

Commit

Permalink
Remove redundant interface
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 28, 2024
1 parent c99a6be commit be2d145
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*/
package org.apache.logging.log4j.internal.map;

import java.io.Serializable;
import java.util.AbstractMap;
import java.util.AbstractSet;
import java.util.Collection;
Expand Down Expand Up @@ -57,7 +56,7 @@
* </ul>
*
*/
public class UnmodifiableArrayBackedMap extends AbstractMap<String, String> implements Serializable, ReadOnlyStringMap {
public class UnmodifiableArrayBackedMap extends AbstractMap<String, String> implements ReadOnlyStringMap {
/**
* Implementation of Map.Entry. The implementation is simple since each instance
* contains an index in the array, then getKey() and getValue() retrieve from
Expand Down

0 comments on commit be2d145

Please sign in to comment.