Skip to content

Commit 62de4d0

Browse files
committed
Adding alt attributes to img tags in javadocs to avoid occasional build issues
1 parent 7caf5e1 commit 62de4d0

File tree

51 files changed

+530
-536
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+530
-536
lines changed

rxjava-contrib/rxjava-async-util/src/main/java/rx/util/async/Async.java

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

rxjava-contrib/rxjava-computation-expressions/src/main/java/rx/Statement.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class Statement {
3131
* Return a particular one of several possible Observables based on a case
3232
* selector.
3333
* <p>
34-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.png">
34+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.png" alt="">
3535
*
3636
* @param <K>
3737
* the case key type
@@ -55,7 +55,7 @@ public static <K, R> Observable<R> switchCase(Func0<? extends K> caseSelector,
5555
* Return a particular one of several possible Observables based on a case
5656
* selector and run it on the designated scheduler.
5757
* <p>
58-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.s.png">
58+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.s.png" alt="">
5959
*
6060
* @param <K>
6161
* the case key type
@@ -82,7 +82,7 @@ public static <K, R> Observable<R> switchCase(Func0<? extends K> caseSelector,
8282
* selector, or a default Observable if the case selector does not map to
8383
* a particular one.
8484
* <p>
85-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.png">
85+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.png" alt="">
8686
*
8787
* @param <K>
8888
* the case key type
@@ -109,7 +109,7 @@ public static <K, R> Observable<R> switchCase(Func0<? extends K> caseSelector,
109109
* Observable, and then continues to replay them so long as a condtion is
110110
* true.
111111
* <p>
112-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/doWhile.png">
112+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/doWhile.png" alt="">
113113
*
114114
* @param postCondition
115115
* the post condition to test after the source
@@ -126,7 +126,7 @@ public static <T> Observable<T> doWhile(Observable<? extends T> source, Func0<Bo
126126
* Return an Observable that replays the emissions from the source
127127
* Observable so long as a condtion is true.
128128
* <p>
129-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/whileDo.png">
129+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/whileDo.png" alt="">
130130
*
131131
* @param preCondition
132132
* the condition to evaluate before subscribing to or
@@ -142,7 +142,7 @@ public static <T> Observable<T> whileDo(Observable<? extends T> source, Func0<Bo
142142
* Return an Observable that emits the emissions from a specified Observable
143143
* if a condition evaluates to true, otherwise return an empty Observable.
144144
* <p>
145-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.png">
145+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.png" alt="">
146146
*
147147
* @param <R>
148148
* the result value type
@@ -163,7 +163,7 @@ public static <R> Observable<R> ifThen(Func0<Boolean> condition, Observable<? ex
163163
* if a condition evaluates to true, otherwise return an empty Observable
164164
* that runs on a specified Scheduler.
165165
* <p>
166-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.s.png">
166+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.s.png" alt="">
167167
*
168168
* @param <R>
169169
* the result value type
@@ -187,7 +187,7 @@ public static <R> Observable<R> ifThen(Func0<Boolean> condition, Observable<? ex
187187
* Observable if a condition evaluates to true, or from another specified
188188
* Observable otherwise.
189189
* <p>
190-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.e.png">
190+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.e.png" alt="">
191191
*
192192
* @param <R>
193193
* the result value type

rxjava-contrib/rxjava-joins/src/main/java/rx/observables/JoinObservable.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static <T> JoinObservable<T> from(Observable<T> o) {
3131
/**
3232
* Returns a Pattern that matches when both Observables emit an item.
3333
* <p>
34-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
34+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
3535
*
3636
* @param right
3737
* an Observable to match with the source Observable
@@ -48,7 +48,7 @@ public final <T2> Pattern2<T, T2> and(Observable<T2> right) {
4848
/**
4949
* Joins together the results from several patterns via their plans.
5050
* <p>
51-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
51+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
5252
*
5353
* @param plans
5454
* a series of plans created by use of the {@link #then} Observer on patterns
@@ -68,7 +68,7 @@ public final static <R> JoinObservable<R> when(Iterable<? extends Plan0<R>> plan
6868
/**
6969
* Joins together the results from several patterns via their plans.
7070
* <p>
71-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
71+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
7272
*
7373
* @param plans
7474
* a series of plans created by use of the {@link #then} Observer on patterns
@@ -85,7 +85,7 @@ public final static <R> JoinObservable<R> when(Plan0<R>... plans) {
8585
/**
8686
* Joins the results from a pattern via its plan.
8787
* <p>
88-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
88+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
8989
*
9090
* @param p1
9191
* the plan to join, created by use of the {@link #then} Observer on a pattern
@@ -101,7 +101,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1) {
101101
/**
102102
* Joins together the results from two patterns via their plans.
103103
* <p>
104-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
104+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
105105
*
106106
* @param p1
107107
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -119,7 +119,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2) {
119119
/**
120120
* Joins together the results from three patterns via their plans.
121121
* <p>
122-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
122+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
123123
*
124124
* @param p1
125125
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -139,7 +139,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
139139
/**
140140
* Joins together the results from four patterns via their plans.
141141
* <p>
142-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
142+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
143143
*
144144
* @param p1
145145
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -161,7 +161,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
161161
/**
162162
* Joins together the results from five patterns via their plans.
163163
* <p>
164-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
164+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
165165
*
166166
* @param p1
167167
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -185,7 +185,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
185185
/**
186186
* Joins together the results from six patterns via their plans.
187187
* <p>
188-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
188+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
189189
*
190190
* @param p1
191191
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -211,7 +211,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
211211
/**
212212
* Joins together the results from seven patterns via their plans.
213213
* <p>
214-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
214+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
215215
*
216216
* @param p1
217217
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -239,7 +239,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
239239
/**
240240
* Joins together the results from eight patterns via their plans.
241241
* <p>
242-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
242+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
243243
*
244244
* @param p1
245245
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -269,7 +269,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
269269
/**
270270
* Joins together the results from nine patterns via their plans.
271271
* <p>
272-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
272+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
273273
*
274274
* @param p1
275275
* a plan, created by use of the {@link #then} Observer on a pattern
@@ -302,7 +302,7 @@ public final static <R> JoinObservable<R> when(Plan0<R> p1, Plan0<R> p2, Plan0<R
302302
* Matches when the Observable has an available item and projects the item by invoking the selector
303303
* function.
304304
* <p>
305-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png">
305+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/and_then_when.png" alt="">
306306
*
307307
* @param selector
308308
* selector that will be invoked for items emitted by the source Observable

0 commit comments

Comments
 (0)