Skip to content

Commit 97cabf5

Browse files
committed
Added the MSDN link
1 parent c465a5c commit 97cabf5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3874,6 +3874,8 @@ public Observable<T> firstOrDefault(Func1<? super T, Boolean> predicate, T defau
38743874
* @return An observable sequence that contains the specified default value
38753875
* if the source is empty; otherwise, the elements of the source
38763876
* itself.
3877+
*
3878+
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229624(v=vs.103).aspx">MSDN: Observable.DefaultIfEmpty</a>
38773879
*/
38783880
public Observable<T> defaultIfEmpty(T defaultValue) {
38793881
return create(OperationDefaultIfEmpty.defaultIfEmpty(this, defaultValue));

0 commit comments

Comments
 (0)