Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ private static <T> Predicate<? super T> getPredicate(

return (value) -> set.contains(indexValueForEntity(getter, value));
} else {
HashSet<Comparable> set = new HashSet<>(values.size());
HashSet<Comparable<?>> set = new HashSet<>(values.size());
for (Object key : values) {
set.add(asKey(key));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ interface Accessor {

Object get(Object instance) throws ReflectiveOperationException;

Class getType();
Class<?> getType();
}

private class FieldAccessor implements Accessor {
Expand All @@ -141,7 +141,7 @@ public Object get(Object instance) throws ReflectiveOperationException {
}

@Override
public Class getType() {
public Class<?> getType() {
return field.getType();
}
}
Expand All @@ -160,7 +160,7 @@ public Object get(Object instance) throws ReflectiveOperationException {
}

@Override
public Class getType() {
public Class<?> getType() {
return method.getReturnType();
}
}
Expand Down