package com.google.zxing.qrcode.encoder; /* loaded from: classes.dex */ final class BlockPair { private final byte[] a; private final byte[] b; BlockPair(byte[] bArr, byte[] bArr2) { this.a = bArr; this.b = bArr2; } public byte[] a() { return this.a; } public byte[] b() { return this.b; } }