Skip to content

Commit 6e508e5

Browse files
authored
2.x: cleanup of PMD suggestions (ReactiveX#4129)
1 parent c9c772f commit 6e508e5

File tree

105 files changed

+518
-559
lines changed

Some content is hidden

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

105 files changed

+518
-559
lines changed

pmd.xml

-8
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
<rule ref="rulesets/java/basic.xml/DontUseFloatTypeForLoopIndices"/>
7272
<rule ref="rulesets/java/basic.xml/DoubleCheckedLocking"/>
7373
<rule ref="rulesets/java/imports.xml/DuplicateImports"/>
74-
<rule ref="rulesets/java/empty.xml/EmptyCatchBlock"/>
7574
<rule ref="rulesets/java/finalizers.xml/EmptyFinalizer"/>
7675
<rule ref="rulesets/java/empty.xml/EmptyFinallyBlock"/>
7776
<rule ref="rulesets/java/empty.xml/EmptyInitializer"/>
@@ -110,7 +109,6 @@
110109
<rule ref="rulesets/java/migrating.xml/JUnit4SuitesShouldUseSuiteAnnotation"/>
111110
<rule ref="rulesets/java/migrating.xml/JUnit4TestShouldUseAfterAnnotation"/>
112111
<rule ref="rulesets/java/migrating.xml/JUnit4TestShouldUseBeforeAnnotation"/>
113-
<rule ref="rulesets/java/migrating.xml/JUnit4TestShouldUseTestAnnotation"/>
114112
<rule ref="rulesets/java/junit.xml/JUnitAssertionsShouldIncludeMessage"/>
115113
<rule ref="rulesets/java/junit.xml/JUnitSpelling"/>
116114
<rule ref="rulesets/java/junit.xml/JUnitStaticSuite"/>
@@ -134,9 +132,6 @@
134132
<rule ref="rulesets/java/javabeans.xml/MissingSerialVersionUID"/>
135133
<rule ref="rulesets/java/design.xml/MissingStaticMethodInNonInstantiatableClass"/>
136134
<rule ref="rulesets/java/logging-java.xml/MoreThanOneLogger"/>
137-
<rule ref="rulesets/java/codesize.xml/NcssConstructorCount"/>
138-
<rule ref="rulesets/java/codesize.xml/NcssMethodCount"/>
139-
<rule ref="rulesets/java/codesize.xml/NcssTypeCount"/>
140135
<rule ref="rulesets/java/naming.xml/NoPackage"/>
141136
<rule ref="rulesets/java/design.xml/NonCaseLabelInSwitchStatement"/>
142137
<rule ref="rulesets/java/design.xml/NonStaticInitializer"/>
@@ -160,7 +155,6 @@
160155
<rule ref="rulesets/java/design.xml/ReturnEmptyArrayRatherThanNull"/>
161156
<rule ref="rulesets/java/basic.xml/ReturnFromFinallyBlock"/>
162157
<rule ref="rulesets/java/migrating.xml/ShortInstantiation"/>
163-
<rule ref="rulesets/java/naming.xml/ShortMethodName"/>
164158
<rule ref="rulesets/java/strictexception.xml/SignatureDeclareThrowsException"/>
165159
<rule ref="rulesets/java/design.xml/SimpleDateFormatNeedsLocale"/>
166160
<rule ref="rulesets/java/junit.xml/SimplifyBooleanAssertion"/>
@@ -183,8 +177,6 @@
183177
<rule ref="rulesets/java/junit.xml/TestClassWithoutTestCases"/>
184178
<rule ref="rulesets/java/design.xml/TooFewBranchesForASwitchStatement"/>
185179
<rule ref="rulesets/java/imports.xml/TooManyStaticImports"/>
186-
<rule ref="rulesets/java/design.xml/UncommentedEmptyConstructor"/>
187-
<rule ref="rulesets/java/design.xml/UncommentedEmptyMethodBody"/>
188180
<rule ref="rulesets/java/basic.xml/UnconditionalIfStatement"/>
189181
<rule ref="rulesets/java/junit.xml/UnnecessaryBooleanAssertion"/>
190182
<rule ref="rulesets/java/strings.xml/UnnecessaryCaseChange"/>

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
* The class follows a similar event pattern as Reactive-Streams: onSubscribe (onError|onComplete)?
3232
*/
3333
public abstract class Completable implements CompletableConsumable {
34+
/** Single instance of a complete Completable. */
35+
static final Completable COMPLETE = new CompletableEmpty();
36+
37+
/** Single instance of a never Completable. */
38+
static final Completable NEVER = new CompletableNever();
39+
3440
/**
3541
* Convenience interface and callback used by the lift operator that given a child CompletableSubscriber,
3642
* return a parent CompletableSubscriber that does any kind of lifecycle-related transformations.
@@ -47,12 +53,6 @@ public interface CompletableTransformer extends Function<Completable, Completabl
4753

4854
}
4955

50-
/** Single instance of a complete Completable. */
51-
static final Completable COMPLETE = new CompletableEmpty();
52-
53-
/** Single instance of a never Completable. */
54-
static final Completable NEVER = new CompletableNever();
55-
5656
/**
5757
* Wraps the given CompletableConsumable into a Completable
5858
* if not already Completable.
@@ -186,7 +186,7 @@ public static Completable create(CompletableConsumable onSubscribe) {
186186
// TODO plugin wrapping onSubscribe
187187

188188
return new CompletableWrapper(onSubscribe);
189-
} catch (NullPointerException ex) {
189+
} catch (NullPointerException ex) { // NOPMD
190190
throw ex;
191191
} catch (Throwable ex) {
192192
RxJavaPlugins.onError(ex);
@@ -1038,7 +1038,7 @@ public final void subscribe(CompletableSubscriber s) {
10381038
// TODO plugin wrapping the subscriber
10391039

10401040
subscribeActual(s);
1041-
} catch (NullPointerException ex) {
1041+
} catch (NullPointerException ex) { // NOPMD
10421042
throw ex;
10431043
} catch (Throwable ex) {
10441044
RxJavaPlugins.onError(ex);

src/main/java/io/reactivex/Flowable.java

+10-12
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@
3333
import io.reactivex.subscribers.*;
3434

3535
public abstract class Flowable<T> implements Publisher<T> {
36+
private static final Object OBJECT = new Object();
37+
/** The default buffer size. */
38+
static final int BUFFER_SIZE;
39+
static {
40+
BUFFER_SIZE = Math.max(16, Integer.getInteger("rx2.buffer-size", 128));
41+
}
42+
3643
/**
3744
* Interface to map/wrap a downstream subscriber to an upstream subscriber.
3845
*
@@ -53,12 +60,6 @@ public interface Transformer<T, R> extends Function<Flowable<T>, Publisher<? ext
5360

5461
}
5562

56-
/** The default buffer size. */
57-
static final int BUFFER_SIZE;
58-
static {
59-
BUFFER_SIZE = Math.max(16, Integer.getInteger("rx2.buffer-size", 128));
60-
}
61-
6263
/** A never observable instance as there is no need to instantiate this more than once. */
6364
static final Flowable<Object> NEVER = create(new Publisher<Object>() {
6465
@Override
@@ -459,8 +460,7 @@ public static <T> Flowable<T> fromFuture(Future<? extends T> future) {
459460
public static <T> Flowable<T> fromFuture(Future<? extends T> future, long timeout, TimeUnit unit) {
460461
Objects.requireNonNull(future, "future is null");
461462
Objects.requireNonNull(unit, "unit is null");
462-
Flowable<T> o = new FlowableFromFuture<T>(future, timeout, unit);
463-
return o;
463+
return new FlowableFromFuture<T>(future, timeout, unit);
464464
}
465465

466466
@BackpressureSupport(BackpressureKind.FULL)
@@ -1613,16 +1613,14 @@ public Publisher<T> apply(Long v) {
16131613
});
16141614
}
16151615

1616-
private static final Object OBJECT = new Object();
1617-
16181616
@SuppressWarnings({ "rawtypes", "unchecked" })
16191617
@BackpressureSupport(BackpressureKind.FULL)
16201618
@SchedulerSupport(SchedulerSupport.NONE)
16211619
public final <U> Flowable<T> delaySubscription(final Supplier<? extends Publisher<U>> delaySupplier) {
16221620
Objects.requireNonNull(delaySupplier, "delaySupplier is null");
16231621
return fromCallable(new Callable<Object>() {
16241622
@Override
1625-
public Object call() throws Exception {
1623+
public Object call() {
16261624
return delaySupplier.get();
16271625
}
16281626
})
@@ -2936,7 +2934,7 @@ public final void subscribe(Subscriber<? super T> s) {
29362934
}
29372935

29382936
subscribeActual(s);
2939-
} catch (NullPointerException e) {
2937+
} catch (NullPointerException e) { // NOPMD
29402938
throw e;
29412939
} catch (Throwable e) {
29422940
// TODO throw if fatal?

src/main/java/io/reactivex/Notification.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
* Utility class to help construct notification objects.
2020
*/
2121
public final class Notification {
22+
static final Try<Optional<Object>> COMPLETE = Try.ofValue(Optional.<Object>empty());
23+
2224
private Notification() {
2325
throw new IllegalStateException();
2426
}
2527

26-
static final Try<Optional<Object>> COMPLETE = Try.ofValue(Optional.<Object>empty());
27-
2828
@SuppressWarnings({ "rawtypes", "unchecked" })
2929
public static <T> Try<Optional<T>> complete() {
3030
return (Try)COMPLETE;

0 commit comments

Comments
 (0)