RxJava2AdapterRules
SUGGESTION
Simplification
Suppression
Disable all rules by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$).*
as compiler argument.
Table of contents
CompletableToMono
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("CompletableToMono")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$CompletableToMono).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
FlowableToFlux
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("FlowableToFlux")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$FlowableToFlux).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
FluxToFlowable
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("FluxToFlowable")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$FluxToFlowable).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
FluxToObservable
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("FluxToObservable")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$FluxToObservable).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
MaybeToMono
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("MaybeToMono")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$MaybeToMono).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
MonoToCompletable
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("MonoToCompletable")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$MonoToCompletable).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
MonoToFlowable
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("MonoToFlowable")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$MonoToFlowable).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
MonoToMaybe
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("MonoToMaybe")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$MonoToMaybe).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
MonoToSingle
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("MonoToSingle")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$MonoToSingle).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
ObservableToFlux
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("ObservableToFlux")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$ObservableToFlux).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.
SingleToMono
SUGGESTION
Simplification
Suppression
Suppress false positives by adding the suppression annotation
@SuppressWarnings("SingleToMono")
to the enclosing element.Disable this rule by adding
-XepOpt:Refaster:NamePattern=^(?!RxJava2AdapterRules\$SingleToMono).*
as compiler argument.
Samples
Shows the difference in example code before and after the Refaster rule is applied.