Skip to content
Prev Previous commit
Next Next commit
Reverted change to access modifier on Trampoline
  • Loading branch information
charlesfinley committed Mar 3, 2021
commit 73f472cc3fce8bb0a40ff9a5e6e4792c7792b4e4
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public T get() {
return trampoline(this);
}

private T trampoline(final Trampoline<T> trampoline) {
T trampoline(final Trampoline<T> trampoline) {
return Stream.iterate(trampoline, Trampoline::jump)
.filter(Trampoline::complete)
.findFirst()
Expand Down