Initial commit
This commit is contained in:
20
sources/com/google/zxing/qrcode/encoder/BlockPair.java
Normal file
20
sources/com/google/zxing/qrcode/encoder/BlockPair.java
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user