saynotobugsorg / confidence

A declarative Java Assertion Framework
Apache License 2.0
11 stars 1 forks source link

fix generic argument types #168

Closed dmfs closed 8 months ago

dmfs commented 8 months ago

some arguments have overly restrictive generic arguments like

Quality<? super Function<? super A, ? extends B>>

since Function<? super A, ? extends B> is a super type of Function<A, B> this should read

Quality<? super Function<A, B>>