Skip to content

Commit

Permalink
Remove redundant modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 7, 2018
1 parent 9f1dabe commit d86509b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -504,7 +504,7 @@ public int hashCode() {
* @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.
Expand Down
Expand Up @@ -159,7 +159,7 @@ public long expirationTime(final K key, final V value) {
* @param <V> the value object type
* @since 4.0
*/
public static interface ExpirationPolicy<K, V>
public interface ExpirationPolicy<K, V>
extends Serializable {

/**
Expand Down
Expand Up @@ -459,7 +459,7 @@ public int hashCode() {
/**
* 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.
Expand Down

0 comments on commit d86509b

Please sign in to comment.