Remove redundant semicolons.
This commit is contained in:
parent
9675e6c794
commit
1e57244dc1
|
@ -98,7 +98,7 @@ public interface HashFunctionIdentity {
|
||||||
*/
|
*/
|
||||||
enum Signedness {
|
enum Signedness {
|
||||||
SIGNED, UNSIGNED
|
SIGNED, UNSIGNED
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An enum that identifies the process type of this function. <dl> <dt>Iterative
|
* An enum that identifies the process type of this function. <dl> <dt>Iterative
|
||||||
|
@ -110,7 +110,7 @@ public interface HashFunctionIdentity {
|
||||||
*/
|
*/
|
||||||
enum ProcessType {
|
enum ProcessType {
|
||||||
CYCLIC, ITERATIVE
|
CYCLIC, ITERATIVE
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the name of this hash function.
|
* Gets the name of this hash function.
|
||||||
|
|
|
@ -123,7 +123,7 @@ public class PredicatedCollection<E> extends AbstractCollectionDecorator<E> {
|
||||||
*/
|
*/
|
||||||
protected PredicatedCollection(final Collection<E> collection, final Predicate<? super E> predicate) {
|
protected PredicatedCollection(final Collection<E> collection, final Predicate<? super E> predicate) {
|
||||||
super(collection);
|
super(collection);
|
||||||
this.predicate = Objects.requireNonNull(predicate, "predicate");;
|
this.predicate = Objects.requireNonNull(predicate, "predicate");
|
||||||
for (final E item : collection) {
|
for (final E item : collection) {
|
||||||
validate(item);
|
validate(item);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue