language stringclasses 1
value | owner stringlengths 2 15 | repo stringlengths 2 21 | sha stringlengths 45 45 | message stringlengths 7 36.3k | path stringlengths 1 199 | patch stringlengths 15 102k | is_multipart bool 2
classes |
|---|---|---|---|---|---|---|---|
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/functions/IntFunction.java | @@ -18,6 +18,7 @@
* A functional interface (callback) that takes a primitive value and return value of type T.
* @param <T> the returned value type
*/
+@FunctionalInterface
public interface IntFunction<T> {
/**
* Calculates a value based on a primitive integer input. | true |
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/functions/LongConsumer.java | @@ -15,6 +15,7 @@
/**
* A functional interface (callback) that consumes a primitive long value.
*/
+@FunctionalInterface
public interface LongConsumer {
/**
* Consume a primitive long input. | true |
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/functions/Predicate.java | @@ -19,6 +19,7 @@
* A functional interface (callback) that returns true or false for the given input value.
* @param <T> the first value
*/
+@FunctionalInterface
public interface Predicate<T> {
/**
* Test the given input value and return a boolean. | true |
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/functions/Supplier.java | @@ -22,6 +22,7 @@
* @param <T> the value type returned
* @since 3.0.0
*/
+@FunctionalInterface
public interface Supplier<T> {
/** | true |
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/internal/fuseable/ScalarSupplier.java | @@ -29,6 +29,7 @@
* <p>
* @param <T> the scalar value type held by the implementing reactive type
*/
+@FunctionalInterface
public interface ScalarSupplier<T> extends Supplier<T> {
// overridden to remove the throws Throwable | true |
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/parallel/ParallelFlowableConverter.java | @@ -23,6 +23,7 @@
* @param <R> the output type
* @since 2.2
*/
+@FunctionalInterface
public interface ParallelFlowableConverter<T, R> {
/**
* Applies a function to the upstream ParallelFlowable and returns a converted value of type {@code R}. | true |
Other | ReactiveX | RxJava | 0fba7c5530b092d13d29681298545ad98d22249a.json | Add FunctionalInterface annotations. (#6773) | src/main/java/io/reactivex/rxjava3/parallel/ParallelTransformer.java | @@ -22,6 +22,7 @@
* @param <Downstream> the downstream value type
* @since 2.2
*/
+@FunctionalInterface
public interface ParallelTransformer<Upstream, Downstream> {
/**
* Applies a function to the upstream ParallelFlowable and returns a ParallelFlowable with | true |
Other | ReactiveX | RxJava | 2392349ccae27a0916d594c115f356c9040c3b98.json | Remove deprecated method from 2.x (#6769) | src/main/java/io/reactivex/rxjava3/internal/functions/ObjectHelper.java | @@ -128,17 +128,4 @@ public boolean test(Object o1, Object o2) {
return ObjectHelper.equals(o1, o2);
}
}
-
- /**
- * Trap null-check attempts on primitives.
- * @param value the value to check
- * @param message the message to print
- * @return the value
- * @deprecated... | true |
Other | ReactiveX | RxJava | 2392349ccae27a0916d594c115f356c9040c3b98.json | Remove deprecated method from 2.x (#6769) | src/test/java/io/reactivex/rxjava3/internal/functions/ObjectHelperTest.java | @@ -67,10 +67,4 @@ public void compareLong() {
assertEquals(0, ObjectHelper.compare(0L, 0L));
assertEquals(1, ObjectHelper.compare(2L, 0L));
}
-
- @SuppressWarnings("deprecation")
- @Test(expected = InternalError.class)
- public void requireNonNullPrimitive() {
- ObjectHelper.requ... | true |
Other | ReactiveX | RxJava | c045188ffbbb35bb62ce1d8a00353679321fa641.json | Fix typo in Flowable javadoc (#6760)
Fix compilation error in example code in javadoc | src/main/java/io/reactivex/rxjava3/core/Flowable.java | @@ -114,7 +114,7 @@
* Thread.sleep(1000);
*
* // the consumer might have cancelled the flow
- * if (emitter.isCancelled() {
+ * if (emitter.isCancelled()) {
* return;
* }
* | false |
Other | ReactiveX | RxJava | e912237091c52da11b591ea96b07776455e631a4.json | 3.x: Make DisposableContainer public API (#6745) | src/main/java/io/reactivex/rxjava3/disposables/CompositeDisposable.java | @@ -16,7 +16,6 @@
import io.reactivex.rxjava3.annotations.NonNull;
import io.reactivex.rxjava3.exceptions.*;
-import io.reactivex.rxjava3.internal.disposables.DisposableContainer;
import io.reactivex.rxjava3.internal.functions.ObjectHelper;
import io.reactivex.rxjava3.internal.util.*;
| true |
Other | ReactiveX | RxJava | e912237091c52da11b591ea96b07776455e631a4.json | 3.x: Make DisposableContainer public API (#6745) | src/main/java/io/reactivex/rxjava3/disposables/DisposableContainer.java | @@ -11,9 +11,7 @@
* the License for the specific language governing permissions and limitations under the License.
*/
-package io.reactivex.rxjava3.internal.disposables;
-
-import io.reactivex.rxjava3.disposables.Disposable;
+package io.reactivex.rxjava3.disposables;
/**
* Common interface to add and remove ... | true |
Other | ReactiveX | RxJava | e912237091c52da11b591ea96b07776455e631a4.json | 3.x: Make DisposableContainer public API (#6745) | src/main/java/io/reactivex/rxjava3/internal/disposables/ListCompositeDisposable.java | @@ -14,7 +14,7 @@
import java.util.*;
-import io.reactivex.rxjava3.disposables.Disposable;
+import io.reactivex.rxjava3.disposables.*;
import io.reactivex.rxjava3.exceptions.*;
import io.reactivex.rxjava3.internal.functions.ObjectHelper;
import io.reactivex.rxjava3.internal.util.ExceptionHelper; | true |
Other | ReactiveX | RxJava | e912237091c52da11b591ea96b07776455e631a4.json | 3.x: Make DisposableContainer public API (#6745) | src/main/java/io/reactivex/rxjava3/internal/schedulers/NewThreadWorker.java | @@ -17,7 +17,7 @@
import io.reactivex.rxjava3.annotations.*;
import io.reactivex.rxjava3.core.Scheduler;
-import io.reactivex.rxjava3.disposables.Disposable;
+import io.reactivex.rxjava3.disposables.*;
import io.reactivex.rxjava3.internal.disposables.*;
import io.reactivex.rxjava3.plugins.RxJavaPlugins;
| true |
Other | ReactiveX | RxJava | e912237091c52da11b591ea96b07776455e631a4.json | 3.x: Make DisposableContainer public API (#6745) | src/main/java/io/reactivex/rxjava3/internal/schedulers/ScheduledRunnable.java | @@ -16,8 +16,7 @@
import java.util.concurrent.*;
import java.util.concurrent.atomic.AtomicReferenceArray;
-import io.reactivex.rxjava3.disposables.Disposable;
-import io.reactivex.rxjava3.internal.disposables.DisposableContainer;
+import io.reactivex.rxjava3.disposables.*;
import io.reactivex.rxjava3.plugins.RxJav... | true |
Other | ReactiveX | RxJava | e6406b362994bcb4b5c2a00a6c10c6dbde4de3c4.json | 3.x: Add missing marble diagams to Single (#6668) | src/main/java/io/reactivex/rxjava3/core/Single.java | @@ -400,6 +400,8 @@ public static <T> Flowable<T> concatArray(SingleSource<? extends T>... sources)
/**
* Concatenates a sequence of SingleSource eagerly into a single stream of values.
* <p>
+ * <img width="640" height="257" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Sin... | false |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/main/java/io/reactivex/rxjava3/core/Flowable.java | @@ -11212,52 +11212,6 @@ public final <R> Flowable<R> lift(FlowableOperator<? extends R, ? super T> lifte
return RxJavaPlugins.onAssembly(new FlowableLift<R, T>(this, lifter));
}
- /**
- * Limits both the number of upstream items (after which the sequence completes)
- * and the total downstre... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/main/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableLimit.java | @@ -1,135 +0,0 @@
-/**
- * Copyright (c) 2016-present, RxJava Contributors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unle... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/main/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableTake.java | @@ -13,7 +13,7 @@
package io.reactivex.rxjava3.internal.operators.flowable;
-import java.util.concurrent.atomic.AtomicBoolean;
+import java.util.concurrent.atomic.AtomicLong;
import org.reactivestreams.*;
@@ -22,68 +22,67 @@
import io.reactivex.rxjava3.plugins.RxJavaPlugins;
public final class FlowableTak... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/flowable/FlowableSubscriberTest.java | @@ -331,8 +331,7 @@ public void cancel() {
}
}).take(2).subscribe(ts);
- // FIXME the take now requests Long.MAX_PATH if downstream requests at least the limit
- assertEquals(Long.MAX_VALUE, requested.get());
+ assertEquals(2, requested.get());
}
@Test | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableBufferTest.java | @@ -2047,30 +2047,6 @@ public void openCloseTake() {
ts.assertResult(Collections.<Integer>emptyList());
}
- @Test
- @SuppressWarnings("unchecked")
- public void openCloseLimit() {
- PublishProcessor<Integer> source = PublishProcessor.create();
-
- PublishProcessor<Integer> openInd... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableMergeWithMaybeTest.java | @@ -357,7 +357,7 @@ public void drainExactRequestCancel() {
final MaybeSubject<Integer> cs = MaybeSubject.create();
TestSubscriber<Integer> ts = pp.mergeWith(cs)
- .limit(2)
+ .take(2)
.subscribeWith(new TestSubscriber<Integer>(2) {
@Overri... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableMergeWithSingleTest.java | @@ -353,7 +353,7 @@ public void drainExactRequestCancel() {
final SingleSubject<Integer> cs = SingleSubject.create();
TestSubscriber<Integer> ts = pp.mergeWith(cs)
- .limit(2)
+ .take(2)
.subscribeWith(new TestSubscriber<Integer>(2) {
@Over... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableTakeTest.java | @@ -142,6 +142,27 @@ public void subscribe(Subscriber<? super String> subscriber) {
RxJavaPlugins.reset();
}
}
+
+ @Test
+ public void takeEmitsErrors() {
+ Flowable.error(new TestException())
+ .take(1)
+ .test()
+ .assertNoValues()
+ ... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableTakeTest2.java | @@ -29,7 +29,8 @@
import io.reactivex.rxjava3.subscribers.TestSubscriber;
import io.reactivex.rxjava3.testsupport.TestHelper;
-public class FlowableLimitTest extends RxJavaTest implements LongConsumer, Action {
+// moved tests from FlowableLimitTest to here (limit removed as operator)
+public class FlowableTakeTest... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/mixed/FlowableConcatMapMaybeTest.java | @@ -263,7 +263,7 @@ public MaybeSource<Integer> apply(Integer v)
return Maybe.just(v);
}
})
- .limit(3)
+ .take(3)
.test()
.assertResult(1, 2, 3);
} | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/mixed/FlowableConcatMapSingleTest.java | @@ -181,7 +181,7 @@ public SingleSource<Integer> apply(Integer v)
return Single.just(v);
}
})
- .limit(3)
+ .take(3)
.test()
.assertResult(1, 2, 3);
} | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/mixed/FlowableSwitchMapMaybeTest.java | @@ -140,7 +140,7 @@ public MaybeSource<Integer> apply(Integer v)
return Maybe.just(v);
}
})
- .limit(3)
+ .take(3)
.test()
.assertResult(1, 2, 3);
} | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/internal/operators/mixed/FlowableSwitchMapSingleTest.java | @@ -88,7 +88,7 @@ public SingleSource<Integer> apply(Integer v)
return Single.just(v);
}
})
- .limit(3)
+ .take(3)
.test()
.assertResult(1, 2, 3);
} | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/tck/LimitTckTest.java | @@ -24,7 +24,7 @@ public class LimitTckTest extends BaseTck<Integer> {
@Override
public Publisher<Integer> createPublisher(long elements) {
return
- Flowable.range(0, (int)elements * 2).limit(elements)
+ Flowable.range(0, (int)elements * 2).take(elements)
;
... | true |
Other | ReactiveX | RxJava | 0c50f0ab1bcfe9bdb1c8cd13ef1dc214c405e580.json | 3.x: constrain upstream requests from take (#6569) (#6650) | src/test/java/io/reactivex/rxjava3/validators/ParamValidationCheckerTest.java | @@ -190,9 +190,8 @@ public void checkParallelFlowable() {
addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "take", Long.TYPE, TimeUnit.class));
addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "take", Long.TYPE, TimeUnit.class, Scheduler.class));
- // zero take/l... | true |
Other | ReactiveX | RxJava | d9c076061c103ca457d7a9070193498a08e1c282.json | 3.x: Add more time for GC in RefCountTest.publishNoLeak (#6581)
* 3.x: Add more time for GC in RefCountTest.publishNoLeak
* Some test restructuring and dynamic GC wait | src/test/java/io/reactivex/internal/operators/flowable/FlowableRefCountTest.java | @@ -731,13 +731,12 @@ static final class ExceptionData extends Exception {
}
}
+ static final int GC_SLEEP_TIME = 250;
+
@Test
public void publishNoLeak() throws Exception {
- Thread.sleep(100);
System.gc();
- Thread.sleep(100);
-
- long start = ManagementFacto... | true |
Other | ReactiveX | RxJava | d9c076061c103ca457d7a9070193498a08e1c282.json | 3.x: Add more time for GC in RefCountTest.publishNoLeak (#6581)
* 3.x: Add more time for GC in RefCountTest.publishNoLeak
* Some test restructuring and dynamic GC wait | src/test/java/io/reactivex/internal/operators/observable/ObservableRefCountTest.java | @@ -704,12 +704,12 @@ static final class ExceptionData extends Exception {
}
}
+ static final int GC_SLEEP_TIME = 250;
+
@Test
public void publishNoLeak() throws Exception {
System.gc();
- Thread.sleep(100);
-
- long start = ManagementFactory.getMemoryMXBean().getHeap... | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/completable/CompletableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.completable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/disposables/DisposablesTest.java | @@ -14,7 +14,6 @@
package io.reactivex.disposables;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/flowable/FlowableTests.java | @@ -14,7 +14,6 @@
package io.reactivex.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/completable/CompletableFromCallableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.completable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/completable/CompletableFromSupplierTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.completable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.CountDownLatch; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableAllTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableAnyTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableAsObservableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertFalse;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import org.junit.Test; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableBufferTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableCombineLatestTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.lang.reflect.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableConcatTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.lang.reflect.Method; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDebounceTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDefaultIfEmptyTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import org.junit.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDeferTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import org.junit.Test; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDelayTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDematerializeTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDistinctTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDistinctUntilChangedTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableDoOnEachTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableFilterTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableFlatMapTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableFromCallableTest.java | @@ -17,7 +17,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableFromIterableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableFromSupplierTest.java | @@ -17,7 +17,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableGroupByTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableGroupJoinTest.java | @@ -16,7 +16,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableHideTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertFalse;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import org.junit.Test; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableJoinTest.java | @@ -15,7 +15,6 @@
*/
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableMapTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertNull;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableMergeDelayErrorTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.lang.reflect.Method; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableMergeTest.java | @@ -15,7 +15,6 @@
import static java.util.Arrays.asList;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.lang.reflect.Method; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableObserveOnTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableOnErrorResumeNextViaFlowableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.fail;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.TimeUnit; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableOnErrorResumeNextViaFunctionTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableOnErrorReturnTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.TimeUnit; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableOnExceptionResumeNextViaFlowableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.fail;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.TimeUnit; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableRangeLongTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableRangeTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableReduceTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableRefCountTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableRepeatTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableReplayEagerTruncateTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.lang.management.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableReplayTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.lang.management.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableRetryTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableRetryWithPredicateTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSampleTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertFalse;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.TimeUnit; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableScanTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSequenceEqualTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.isA;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSingleTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSkipLastTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.Arrays; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSkipLastTimedTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.concurrent.TimeUnit; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSkipTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.Arrays; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSkipWhileTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import org.junit.Test; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableSwitchTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTakeLastTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTakeTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTakeUntilPredicateTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTakeWhileTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.fail;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableThrottleFirstTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTimeoutTests.java | @@ -15,7 +15,6 @@
import static io.reactivex.internal.util.ExceptionHelper.timeoutMessage;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.io.IOException; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTimeoutWithSelectorTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableTimerTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertTrue;
-import static org.mockito.ArgumentMatchers.*;
import static org.mockito.Mockito.*;
import java.util.List; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableToListTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableToMapTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableToMultimapTest.java | @@ -13,7 +13,6 @@
package io.reactivex.internal.operators.flowable;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableToSortedListTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.assertEquals;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Other | ReactiveX | RxJava | 335ee341a32afcdcc16ea3b69c76230bafbce077.json | 3.x: remove unnecessary static imports from unit tests (#6550) | src/test/java/io/reactivex/internal/operators/flowable/FlowableWindowWithFlowableTest.java | @@ -14,7 +14,6 @@
package io.reactivex.internal.operators.flowable;
import static org.junit.Assert.*;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import java.util.*; | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.