Skip to content

Commit

Permalink
remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
tonivade committed Jun 28, 2024
1 parent fc728d9 commit 00dfbf2
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@

public interface Kind<F extends Kind<F, ?>, A> {

default <R> R fix1(Function<? super Kind<F, ? extends A>, ? extends R> fixer) {
return fixer.apply(this);
}

default <R extends Kind<F, A>> R fix(Function<? super Kind<F, ? extends A>, ? extends R> fixer) {
return fixer.apply(this);
}
Expand Down

0 comments on commit 00dfbf2

Please sign in to comment.