Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package io.fabric.sdk.android.services.common;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public class ResponseParser {
|
||||
public static int a(int i) {
|
||||
if (i >= 200 && i <= 299) {
|
||||
return 0;
|
||||
}
|
||||
if (i >= 300 && i <= 399) {
|
||||
return 1;
|
||||
}
|
||||
if (i >= 400 && i <= 499) {
|
||||
return 0;
|
||||
}
|
||||
if (i >= 500) {
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user