46 lines
1.1 KiB
Java
46 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
import java.util.Arrays;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class sNO {
|
||
|
public final byte[] a;
|
||
|
public final C1332aAy c;
|
||
|
|
||
|
public sNO(C1332aAy c1332aAy, byte[] bArr) {
|
||
|
if (c1332aAy == null) {
|
||
|
throw new NullPointerException("encoding is null");
|
||
|
}
|
||
|
if (bArr == null) {
|
||
|
throw new NullPointerException("bytes is null");
|
||
|
}
|
||
|
this.c = c1332aAy;
|
||
|
this.a = bArr;
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof sNO)) {
|
||
|
return false;
|
||
|
}
|
||
|
sNO sno = (sNO) obj;
|
||
|
if (this.c.equals(sno.c)) {
|
||
|
return Arrays.equals(this.a, sno.a);
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return ((this.c.hashCode() ^ 1000003) * 1000003) ^ Arrays.hashCode(this.a);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("EncodedPayload{encoding=");
|
||
|
sb.append(this.c);
|
||
|
sb.append(", bytes=[...]}");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|