rxjava version + static fix
This commit is contained in:
parent
6266c8356b
commit
0b4e2eb14d
|
|
@ -26,7 +26,7 @@ dependencies {
|
|||
compile 'net.danlew:android.joda:2.9.9'
|
||||
compile 'com.android.support:multidex:1.0.1'
|
||||
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
||||
compile 'io.reactivex.rxjava2:rxjava:2.0.8'
|
||||
compile 'io.reactivex.rxjava2:rxjava:2.1.0'
|
||||
|
||||
provided 'com.android.support:appcompat-v7:25.3.1'
|
||||
provided 'com.android.support:recyclerview-v7:25.3.1'
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public abstract class ApiModel implements Serializable {
|
|||
* @param collectionValidationRule Rule explaining what to do if invalid items found;
|
||||
* @throws ValidationException Exception of validation.
|
||||
*/
|
||||
@SuppressWarnings("PMD.PreserveStackTrace")
|
||||
@SuppressWarnings({"PMD.PreserveStackTrace", "PMD.CyclomaticComplexity"})
|
||||
// PreserveStackTrace: it's ok - we are logging it on Lc.e()
|
||||
protected static void validateCollection(@NonNull final Collection collection, @NonNull final CollectionValidationRule collectionValidationRule)
|
||||
throws ValidationException {
|
||||
|
|
|
|||
Loading…
Reference in New Issue