Rabbit-R1/android (non root)/java/sources/com/google/zxing/qrcode/encoder/BlockPair.java

22 lines
550 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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;
}
}