Skip to content

Commit 98cccec

Browse files
author
jmhofer
committed
Added link urls to the msdn descriptions
1 parent 4452518 commit 98cccec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2308,12 +2308,12 @@ public Observable<T> first(Func1<? super T, Boolean> predicate) {
23082308
* The default value to emit if the source Observable doesn't emit anything.
23092309
* @return an Observable that emits only the very first item from the source, or a default value
23102310
* if the source Observable completes without emitting a single item.
2311-
* @see <a href="">MSDN: Observable.FirstOrDefault</a>
2311+
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229320%28v=vs.103%29.aspx">MSDN: Observable.FirstOrDefault</a>
23122312
*/
23132313
public Observable<T> firstOrDefault(T defaultValue) {
23142314
return create(OperationFirstOrDefault.firstOrDefault(this, defaultValue));
23152315
}
2316-
2316+
23172317
/**
23182318
* Returns an Observable that emits only the very first item emitted by the source Observable
23192319
* that satisfies a given condition, or a default value otherwise.
@@ -2324,12 +2324,12 @@ public Observable<T> firstOrDefault(T defaultValue) {
23242324
* satisfies the given condition.
23252325
* @return an Observable that emits only the very first item from the source that satisfies the
23262326
* given condition, or a default value otherwise.
2327-
* @see <a href="">MSDN: Observable.FirstOrDefault</a>
2327+
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229759%28v=vs.103%29.aspx">MSDN: Observable.FirstOrDefault</a>
23282328
*/
23292329
public Observable<T> firstOrDefault(Func1<? super T, Boolean> predicate, T defaultValue) {
23302330
return create(OperationFirstOrDefault.firstOrDefault(this, predicate, defaultValue));
23312331
}
2332-
2332+
23332333
/**
23342334
* Returns an Observable that emits items emitted by the source Observable so long as a
23352335
* specified condition is true.

0 commit comments

Comments
 (0)