File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
rxjava-core/src/main/java/rx/plugins Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 18
18
import java .util .concurrent .atomic .AtomicReference ;
19
19
20
20
/**
21
- * Registry for plugin implementations that allows global override and handles the retrieval of correct implementation based on order of precedence:
21
+ * Registry for plugin implementations that allows global override and handles the retrieval of correct
22
+ * implementation based on order of precedence:
22
23
* <ol>
23
24
* <li>plugin registered globally via {@code register} methods in this class</li>
24
- * <li>plugin registered and retrieved using {@link java.lang.System#getProperty(String)} (see get methods for property names)</li>
25
+ * <li>plugin registered and retrieved using {@link java.lang.System#getProperty(String)} (see get methods for
26
+ * property names)</li>
25
27
* <li>default implementation</li>
26
28
* </ol>
29
+ *
27
30
* @see <a href="https://github.com/Netflix/RxJava/wiki/Plugins">RxJava Wiki: Plugins</a>
28
31
*/
29
32
public class RxJavaPlugins {
@@ -171,7 +174,7 @@ private static Object getPluginImplementationViaProperty(Class<?> pluginClass) {
171
174
* the property {@code rxjava.plugin.RxJavaDefaultSchedulers.implementation} with the full classname to
172
175
* load.
173
176
*
174
- * @return {@link RxJavaErrorHandler } implementation to use
177
+ * @return the {@link RxJavaDefaultSchedulers } implementation in use
175
178
*/
176
179
public RxJavaDefaultSchedulers getDefaultSchedulers () {
177
180
if (schedulerOverrides .get () == null ) {
You can’t perform that action at this time.
0 commit comments