Skip to content

Commit 3096024

Browse files
ShaishavGandhiakarnokd
authored andcommitted
Rename interface parameters (#5766)
Signed-off-by: shaishavgandhi05 <[email protected]>
1 parent e71b49c commit 3096024

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ public interface CompletableOnSubscribe {
2323

2424
/**
2525
* Called for each CompletableObserver that subscribes.
26-
* @param e the safe emitter instance, never null
26+
* @param emitter the safe emitter instance, never null
2727
* @throws Exception on error
2828
*/
29-
void subscribe(@NonNull CompletableEmitter e) throws Exception;
29+
void subscribe(@NonNull CompletableEmitter emitter) throws Exception;
3030
}
3131

src/main/java/io/reactivex/FlowableOnSubscribe.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public interface FlowableOnSubscribe<T> {
2525

2626
/**
2727
* Called for each Subscriber that subscribes.
28-
* @param e the safe emitter instance, never null
28+
* @param emitter the safe emitter instance, never null
2929
* @throws Exception on error
3030
*/
31-
void subscribe(@NonNull FlowableEmitter<T> e) throws Exception;
31+
void subscribe(@NonNull FlowableEmitter<T> emitter) throws Exception;
3232
}
3333

src/main/java/io/reactivex/MaybeOnSubscribe.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public interface MaybeOnSubscribe<T> {
2525

2626
/**
2727
* Called for each MaybeObserver that subscribes.
28-
* @param e the safe emitter instance, never null
28+
* @param emitter the safe emitter instance, never null
2929
* @throws Exception on error
3030
*/
31-
void subscribe(@NonNull MaybeEmitter<T> e) throws Exception;
31+
void subscribe(@NonNull MaybeEmitter<T> emitter) throws Exception;
3232
}
3333

src/main/java/io/reactivex/ObservableOnSubscribe.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public interface ObservableOnSubscribe<T> {
2525

2626
/**
2727
* Called for each Observer that subscribes.
28-
* @param e the safe emitter instance, never null
28+
* @param emitter the safe emitter instance, never null
2929
* @throws Exception on error
3030
*/
31-
void subscribe(@NonNull ObservableEmitter<T> e) throws Exception;
31+
void subscribe(@NonNull ObservableEmitter<T> emitter) throws Exception;
3232
}
3333

src/main/java/io/reactivex/SingleOnSubscribe.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public interface SingleOnSubscribe<T> {
2525

2626
/**
2727
* Called for each SingleObserver that subscribes.
28-
* @param e the safe emitter instance, never null
28+
* @param emitter the safe emitter instance, never null
2929
* @throws Exception on error
3030
*/
31-
void subscribe(@NonNull SingleEmitter<T> e) throws Exception;
31+
void subscribe(@NonNull SingleEmitter<T> emitter) throws Exception;
3232
}
3333

0 commit comments

Comments
 (0)