Skip to content

Commit

Permalink
Preparing initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
vsilaev committed Aug 20, 2018
1 parent 724b073 commit 3905bd6
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -666,5 +666,10 @@ private static interface StreamToOption<T>
extends SuspendableFunction<SuspendableStream<? extends T>, Option<? extends T>> {}

private static final Supplier<?> NONE_SUPPLIER = () -> Option.none();
private static final SuspendableSupplier<?> NONE_SUPPLIER$ = () -> Option.none();
private static final SuspendableSupplier<?> NONE_SUPPLIER$ = new SuspendableSupplier<Object>() {
@Override
public Object get() {
return Option.none();
}
};
}

0 comments on commit 3905bd6

Please sign in to comment.