mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
14 lines
579 B
Java
14 lines
579 B
Java
package com.google.zxing.client.result;
|
|
|
|
/* loaded from: classes3.dex */
|
|
abstract class AbstractDoCoMoResultParser extends ResultParser {
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static String[] matchDoCoMoPrefixedField(String str, String str2) {
|
|
return matchPrefixedField(str, str2, ';', true);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static String matchSingleDoCoMoPrefixedField(String str, String str2, boolean z) {
|
|
return matchSinglePrefixedField(str, str2, ';', z);
|
|
}
|
|
}
|