Rabbit-R1/android (non root)/java/sources/com/google/zxing/qrcode/encoder/BlockPair.java
2024-05-21 17:08:36 -04:00

21 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;
}
}