Skip to content

Commit ff16f76

Browse files
vanniktechakarnokd
authored andcommitted
1.x: Remove trailing whitespace (#4500)
1 parent d86cf19 commit ff16f76

File tree

544 files changed

+10455
-10455
lines changed

Some content is hidden

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

544 files changed

+10455
-10455
lines changed

src/main/java/rx/AsyncEmitter.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright 2016 Netflix, Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -23,7 +23,7 @@
2323
* a resource with it and exposes the current number of downstream
2424
* requested amount.
2525
* <p>
26-
* The onNext, onError and onCompleted methods should be called
26+
* The onNext, onError and onCompleted methods should be called
2727
* in a sequential manner, just like the Observer's methods. The
2828
* other methods are threadsafe.
2929
*
@@ -39,7 +39,7 @@ public interface AsyncEmitter<T> extends Observer<T> {
3939
* @param s the subscription, null is allowed
4040
*/
4141
void setSubscription(Subscription s);
42-
42+
4343
/**
4444
* Sets a Cancellable on this emitter; any previous Subscription
4545
* or Cancellation will be unsubscribed/cancelled.
@@ -52,20 +52,20 @@ public interface AsyncEmitter<T> extends Observer<T> {
5252
* @return the current outstanding request amount
5353
*/
5454
long requested();
55-
55+
5656
/**
5757
* A functional interface that has a single close method
5858
* that can throw.
5959
*/
6060
interface Cancellable {
61-
61+
6262
/**
6363
* Cancel the action or free a resource.
6464
* @throws Exception on error
6565
*/
6666
void cancel() throws Exception;
6767
}
68-
68+
6969
/**
7070
* Options to handle backpressure in the emitter.
7171
*/

0 commit comments

Comments
 (0)