Skip to content

Commit 35281d5

Browse files
vanniktechakarnokd
authored andcommitted
2.x: Remove trailing whitespace (#4496)
1 parent d2d7f69 commit 35281d5

File tree

954 files changed

+22422
-22422
lines changed

Some content is hidden

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

954 files changed

+22422
-22422
lines changed

src/main/java/io/reactivex/BackpressureStrategy.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at
6-
*
6+
*
77
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
8+
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is
1010
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
1111
* the License for the specific language governing permissions and limitations under the License.

src/main/java/io/reactivex/Completable.java

+103-103
Large diffs are not rendered by default.

src/main/java/io/reactivex/CompletableEmitter.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at
6-
*
6+
*
77
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
8+
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is
1010
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
1111
* the License for the specific language governing permissions and limitations under the License.
@@ -30,27 +30,27 @@ public interface CompletableEmitter {
3030
* Signal the completion.
3131
*/
3232
void onComplete();
33-
33+
3434
/**
3535
* Signal an exception.
3636
* @param t the exception, not null
3737
*/
3838
void onError(Throwable t);
39-
39+
4040
/**
4141
* Sets a Disposable on this emitter; any previous Disposable
4242
* or Cancellation will be unsubscribed/cancelled.
4343
* @param d the disposable, null is allowed
4444
*/
4545
void setDisposable(Disposable d);
46-
46+
4747
/**
4848
* Sets a Cancellable on this emitter; any previous Disposable
4949
* or Cancellation will be unsubscribed/cancelled.
5050
* @param c the cancellable resource, null is allowed
5151
*/
5252
void setCancellable(Cancellable c);
53-
53+
5454
/**
5555
* Returns true if the downstream disposed the sequence.
5656
* @return true if the downstream disposed the sequence

src/main/java/io/reactivex/CompletableObserver.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at
6-
*
6+
*
77
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
8+
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is
1010
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
1111
* the License for the specific language governing permissions and limitations under the License.
@@ -30,7 +30,7 @@ public interface CompletableObserver {
3030
* Called once the deferred computation completes normally.
3131
*/
3232
void onComplete();
33-
33+
3434
/**
3535
* Called once if the deferred computation 'throws' an exception.
3636
* @param e the exception, not null.

src/main/java/io/reactivex/CompletableOnSubscribe.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at
6-
*
6+
*
77
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
8+
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is
1010
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
1111
* the License for the specific language governing permissions and limitations under the License.
@@ -18,7 +18,7 @@
1818
* an event in a cancellation-safe manner.
1919
*/
2020
public interface CompletableOnSubscribe {
21-
21+
2222
/**
2323
* Called for each CompletableObserver that subscribes.
2424
* @param e the safe emitter instance, never null

src/main/java/io/reactivex/CompletableSource.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at
6-
*
6+
*
77
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
8+
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is
1010
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
1111
* the License for the specific language governing permissions and limitations under the License.
@@ -15,11 +15,11 @@
1515
/**
1616
* Represents a basic {@link Completable} source base interface,
1717
* consumable via an {@link CompletableObserver}.
18-
*
18+
*
1919
* @since 2.0
2020
*/
2121
public interface CompletableSource {
22-
22+
2323
/**
2424
* Subscribes the given CompletableObserver to this CompletableSource instance.
2525
* @param cs the CompletableObserver, not null

src/main/java/io/reactivex/Emitter.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
55
* compliance with the License. You may obtain a copy of the License at
6-
*
6+
*
77
* http://www.apache.org/licenses/LICENSE-2.0
8-
*
8+
*
99
* Unless required by applicable law or agreed to in writing, software distributed under the License is
1010
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
1111
* the License for the specific language governing permissions and limitations under the License.
@@ -25,13 +25,13 @@ public interface Emitter<T> {
2525
* @param value the value to signal, not null
2626
*/
2727
void onNext(T value);
28-
28+
2929
/**
3030
* Signal a Throwable exception.
3131
* @param error the Throwable to signal, not null
3232
*/
3333
void onError(Throwable error);
34-
34+
3535
/**
3636
* Signal a completion.
3737
*/

0 commit comments

Comments
 (0)