36 lines
778 B
Java
36 lines
778 B
Java
|
package o;
|
||
|
|
||
|
import java.util.Calendar;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class EZ extends EQ {
|
||
|
public final int a;
|
||
|
public final boolean b;
|
||
|
private final boolean c;
|
||
|
private final String d;
|
||
|
|
||
|
public EZ(int i, String str) {
|
||
|
this(i, str, false);
|
||
|
}
|
||
|
|
||
|
public EZ(int i, String str, boolean z) {
|
||
|
this(i, str, z, false);
|
||
|
}
|
||
|
|
||
|
public EZ(int i, String str, boolean z, boolean z2) {
|
||
|
this.a = i;
|
||
|
this.d = str;
|
||
|
this.b = z;
|
||
|
this.c = z2;
|
||
|
}
|
||
|
|
||
|
public final String c() {
|
||
|
StringBuilder sb = new StringBuilder(this.d);
|
||
|
if (this.c) {
|
||
|
sb.append("_");
|
||
|
sb.append(String.valueOf(Calendar.getInstance().getTimeInMillis()));
|
||
|
}
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|