Skip to content

Commit 5e7792d

Browse files
committed
Adding alt attributes to img tags in javadocs to avoid occasional build issues
1 parent fab02b3 commit 5e7792d

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/main/java/rx/observables/MathObservable.java

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static <T> MathObservable<T> from(Observable<T> o) {
4242
/**
4343
* Returns an Observable that emits the average of the Doubles emitted by the source Observable.
4444
* <p>
45-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
45+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
4646
*
4747
* @param source
4848
* source Observable to compute the average of
@@ -58,7 +58,7 @@ public final static Observable<Double> averageDouble(Observable<Double> source)
5858
/**
5959
* Returns an Observable that emits the average of the Floats emitted by the source Observable.
6060
* <p>
61-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
61+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
6262
*
6363
* @param source
6464
* source Observable to compute the average of
@@ -74,7 +74,7 @@ public final static Observable<Float> averageFloat(Observable<Float> source) {
7474
/**
7575
* Returns an Observable that emits the average of the Integers emitted by the source Observable.
7676
* <p>
77-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
77+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
7878
*
7979
* @param source
8080
* source Observable to compute the average of
@@ -92,7 +92,7 @@ public final static Observable<Integer> averageInteger(Observable<Integer> sourc
9292
/**
9393
* Returns an Observable that emits the average of the Longs emitted by the source Observable.
9494
* <p>
95-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png">
95+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.png" alt="">
9696
*
9797
* @param source
9898
* source Observable to compute the average of
@@ -110,7 +110,7 @@ public final static Observable<Long> averageLong(Observable<Long> source) {
110110
* numeric value. If there is more than one item with the same maximum value, it emits the last-emitted of
111111
* these.
112112
* <p>
113-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png">
113+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png" alt="">
114114
*
115115
* @param source
116116
* an Observable to scan for the maximum emitted item
@@ -128,7 +128,7 @@ public final static <T extends Comparable<? super T>> Observable<T> max(Observab
128128
* Returns an Observable that emits the single numerically minimum item emitted by the source Observable.
129129
* If there is more than one such item, it returns the last-emitted one.
130130
* <p>
131-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png">
131+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png" alt="">
132132
*
133133
* @param source
134134
* an Observable to determine the minimum item of
@@ -144,7 +144,7 @@ public final static <T extends Comparable<? super T>> Observable<T> min(Observab
144144
/**
145145
* Returns an Observable that emits the sum of all the Doubles emitted by the source Observable.
146146
* <p>
147-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
147+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
148148
*
149149
* @param source
150150
* the source Observable to compute the sum of
@@ -160,7 +160,7 @@ public final static Observable<Double> sumDouble(Observable<Double> source) {
160160
/**
161161
* Returns an Observable that emits the sum of all the Floats emitted by the source Observable.
162162
* <p>
163-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
163+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
164164
*
165165
* @param source
166166
* the source Observable to compute the sum of
@@ -176,7 +176,7 @@ public final static Observable<Float> sumFloat(Observable<Float> source) {
176176
/**
177177
* Returns an Observable that emits the sum of all the Integers emitted by the source Observable.
178178
* <p>
179-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
179+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
180180
*
181181
* @param source
182182
* source Observable to compute the sum of
@@ -192,7 +192,7 @@ public final static Observable<Integer> sumInteger(Observable<Integer> source) {
192192
/**
193193
* Returns an Observable that emits the sum of all the Longs emitted by the source Observable.
194194
* <p>
195-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png">
195+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.png" alt="">
196196
*
197197
* @param source
198198
* source Observable to compute the sum of
@@ -209,7 +209,7 @@ public final static Observable<Long> sumLong(Observable<Long> source) {
209209
* Returns an Observable that transforms items emitted by the source Observable into Doubles by using a
210210
* function you provide and then emits the Double average of the complete sequence of transformed values.
211211
* <p>
212-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
212+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
213213
*
214214
* @param valueExtractor
215215
* the function to transform an item emitted by the source Observable into a Double
@@ -226,7 +226,7 @@ public final Observable<Double> averageDouble(Func1<? super T, Double> valueExtr
226226
* Returns an Observable that transforms items emitted by the source Observable into Floats by using a
227227
* function you provide and then emits the Float average of the complete sequence of transformed values.
228228
* <p>
229-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
229+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
230230
*
231231
* @param valueExtractor
232232
* the function to transform an item emitted by the source Observable into a Float
@@ -243,7 +243,7 @@ public final Observable<Float> averageFloat(Func1<? super T, Float> valueExtract
243243
* Returns an Observable that transforms items emitted by the source Observable into Integers by using a
244244
* function you provide and then emits the Integer average of the complete sequence of transformed values.
245245
* <p>
246-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
246+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
247247
*
248248
* @param valueExtractor
249249
* the function to transform an item emitted by the source Observable into an Integer
@@ -260,7 +260,7 @@ public final Observable<Integer> averageInteger(Func1<? super T, Integer> valueE
260260
* Returns an Observable that transforms items emitted by the source Observable into Longs by using a
261261
* function you provide and then emits the Long average of the complete sequence of transformed values.
262262
* <p>
263-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png">
263+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/average.f.png" alt="">
264264
*
265265
* @param valueExtractor
266266
* the function to transform an item emitted by the source Observable into a Long
@@ -278,7 +278,7 @@ public final Observable<Long> averageLong(Func1<? super T, Long> valueExtractor)
278278
* specified comparator. If there is more than one item with the same maximum value, it emits the
279279
* last-emitted of these.
280280
* <p>
281-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png">
281+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/max.png" alt="">
282282
*
283283
* @param comparator
284284
* the comparer used to compare items
@@ -297,7 +297,7 @@ public final Observable<T> max(Comparator<? super T> comparator) {
297297
* Returns an Observable that emits the minimum item emitted by the source Observable, according to a
298298
* specified comparator. If there is more than one such item, it returns the last-emitted one.
299299
* <p>
300-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png">
300+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/min.png" alt="">
301301
*
302302
* @param comparator
303303
* the comparer used to compare elements
@@ -316,7 +316,7 @@ public final Observable<T> min(Comparator<? super T> comparator) {
316316
* Returns an Observable that extracts a Double from each of the items emitted by the source Observable via
317317
* a function you specify, and then emits the sum of these Doubles.
318318
* <p>
319-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
319+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
320320
*
321321
* @param valueExtractor
322322
* the function to extract a Double from each item emitted by the source Observable
@@ -333,7 +333,7 @@ public final Observable<Double> sumDouble(Func1<? super T, Double> valueExtracto
333333
* Returns an Observable that extracts a Float from each of the items emitted by the source Observable via
334334
* a function you specify, and then emits the sum of these Floats.
335335
* <p>
336-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
336+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
337337
*
338338
* @param valueExtractor
339339
* the function to extract a Float from each item emitted by the source Observable
@@ -350,7 +350,7 @@ public final Observable<Float> sumFloat(Func1<? super T, Float> valueExtractor)
350350
* Returns an Observable that extracts an Integer from each of the items emitted by the source Observable
351351
* via a function you specify, and then emits the sum of these Integers.
352352
* <p>
353-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
353+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
354354
*
355355
* @param valueExtractor
356356
* the function to extract an Integer from each item emitted by the source Observable
@@ -367,7 +367,7 @@ public final Observable<Integer> sumInteger(Func1<? super T, Integer> valueExtra
367367
* Returns an Observable that extracts a Long from each of the items emitted by the source Observable via a
368368
* function you specify, and then emits the sum of these Longs.
369369
* <p>
370-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png">
370+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/sum.f.png" alt="">
371371
*
372372
* @param valueExtractor
373373
* the function to extract a Long from each item emitted by the source Observable

0 commit comments

Comments
 (0)