Merge branch 'master' into lib_upd
This commit is contained in:
commit
3773cec2df
|
|
@ -27,8 +27,8 @@ dependencies {
|
|||
compile 'io.reactivex:rxandroid:1.2.1'
|
||||
compile 'io.reactivex:rxjava:1.3.0'
|
||||
|
||||
provided 'com.android.support:appcompat-v7:25.4.0'
|
||||
provided 'com.android.support:recyclerview-v7:25.4.0'
|
||||
provided 'com.android.support:appcompat-v7:25.3.1'
|
||||
provided 'com.android.support:recyclerview-v7:25.3.1'
|
||||
|
||||
provided 'com.squareup.retrofit2:retrofit:2.3.0'
|
||||
provided('com.google.http-client:google-http-client-jackson2:1.22.0') {
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public class LoganSquareEnumConverter<T extends Enum & LoganSquareEnum> extends
|
|||
@Override
|
||||
public T getFromString(@Nullable final String string) {
|
||||
if (string == null) {
|
||||
return null;
|
||||
return defaultValue;
|
||||
}
|
||||
for (final T value : enumValues) {
|
||||
if (value.getValueName().equals(string)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue