Remove redundant semicolons.

This commit is contained in:
Gary Gregory 2020-01-26 17:29:45 -05:00
parent 9675e6c794
commit 1e57244dc1
2 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ public interface HashFunctionIdentity {
*/
enum Signedness {
SIGNED, UNSIGNED
};
}
/**
* An enum that identifies the process type of this function. <dl> <dt>Iterative
@ -110,7 +110,7 @@ public interface HashFunctionIdentity {
*/
enum ProcessType {
CYCLIC, ITERATIVE
};
}
/**
* Gets the name of this hash function.

View File

@ -123,7 +123,7 @@ public class PredicatedCollection<E> extends AbstractCollectionDecorator<E> {
*/
protected PredicatedCollection(final Collection<E> collection, final Predicate<? super E> predicate) {
super(collection);
this.predicate = Objects.requireNonNull(predicate, "predicate");;
this.predicate = Objects.requireNonNull(predicate, "predicate");
for (final E item : collection) {
validate(item);
}