Remove redundant modifiers.

This commit is contained in:
Gary Gregory 2018-07-07 11:37:21 -06:00
parent 9f1dabed56
commit d86509b096
3 changed files with 3 additions and 3 deletions

View File

@ -504,7 +504,7 @@ public class CompositeMap<K, V> extends AbstractIterableMap<K, V> implements Ser
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map
*/
public static interface MapMutator<K, V> extends Serializable {
public interface MapMutator<K, V> extends Serializable {
/**
* Called when adding a new Composited Map results in a
* key collision.

View File

@ -159,7 +159,7 @@ public class PassiveExpiringMap<K, V>
* @param <V> the value object type
* @since 4.0
*/
public static interface ExpirationPolicy<K, V>
public interface ExpirationPolicy<K, V>
extends Serializable {
/**

View File

@ -459,7 +459,7 @@ public class CompositeSet<E> implements Set<E>, Serializable {
/**
* Define callbacks for mutation operations.
*/
public static interface SetMutator<E> extends Serializable {
public interface SetMutator<E> extends Serializable {
/**
* Called when an object is to be added to the composite.