31 lines
1.2 KiB
Java
31 lines
1.2 KiB
Java
|
package com.google.firebase.components;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class DependencyCycleException extends DependencyException {
|
||
|
private final List<Component<?>> componentsInCycle;
|
||
|
|
||
|
/* JADX WARN: Illegal instructions before constructor call */
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public DependencyCycleException(java.util.List<com.google.firebase.components.Component<?>> r3) {
|
||
|
/*
|
||
|
r2 = this;
|
||
|
java.lang.StringBuilder r0 = new java.lang.StringBuilder
|
||
|
java.lang.String r1 = "Dependency cycle detected: "
|
||
|
r0.<init>(r1)
|
||
|
java.lang.Object[] r1 = r3.toArray()
|
||
|
java.lang.String r1 = java.util.Arrays.toString(r1)
|
||
|
r0.append(r1)
|
||
|
java.lang.String r0 = r0.toString()
|
||
|
r2.<init>(r0)
|
||
|
r2.componentsInCycle = r3
|
||
|
return
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: com.google.firebase.components.DependencyCycleException.<init>(java.util.List):void");
|
||
|
}
|
||
|
}
|