mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
550 B
Java
22 lines
550 B
Java
|
package com.google.zxing.qrcode.encoder;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
final class BlockPair {
|
||
|
private final byte[] dataBytes;
|
||
|
private final byte[] errorCorrectionBytes;
|
||
|
|
||
|
public byte[] getDataBytes() {
|
||
|
return this.dataBytes;
|
||
|
}
|
||
|
|
||
|
public byte[] getErrorCorrectionBytes() {
|
||
|
return this.errorCorrectionBytes;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public BlockPair(byte[] bArr, byte[] bArr2) {
|
||
|
this.dataBytes = bArr;
|
||
|
this.errorCorrectionBytes = bArr2;
|
||
|
}
|
||
|
}
|