Skip to content

Commit c0caae8

Browse files
committed
Trampoline#codense should be private
1 parent e472227 commit c0caae8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/java/fj/control/Trampoline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public Either<P1<Trampoline<A>>, A> resume() {
107107
}
108108

109109
@SuppressWarnings("unchecked")
110-
protected static <A, B> Codense<B> codense(final Normal<A> a, final F<A, Trampoline<B>> k) {
110+
private static <A, B> Codense<B> codense(final Normal<A> a, final F<A, Trampoline<B>> k) {
111111
return new Codense<>((Normal<Object>) a, (F<Object, Trampoline<B>>) k);
112112
}
113113

0 commit comments

Comments
 (0)