Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.common.util;
|
||||
|
||||
import com.google.android.gms.common.api.Scope;
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
import java.util.Set;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class ScopeUtil {
|
||||
private ScopeUtil() {
|
||||
}
|
||||
|
||||
public static String[] toScopeString(Set<Scope> set) {
|
||||
Preconditions.checkNotNull(set, "scopes can't be null.");
|
||||
Scope[] scopeArr = (Scope[]) set.toArray(new Scope[set.size()]);
|
||||
Preconditions.checkNotNull(scopeArr, "scopes can't be null.");
|
||||
String[] strArr = new String[scopeArr.length];
|
||||
for (int i = 0; i < scopeArr.length; i++) {
|
||||
strArr[i] = scopeArr[i].getScopeUri();
|
||||
}
|
||||
return strArr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user