19 lines
516 B
Java
19 lines
516 B
Java
package com.squareup.leakcanary;
|
|
|
|
import com.squareup.haha.perflib.Instance;
|
|
|
|
/* loaded from: classes.dex */
|
|
final class LeakNode {
|
|
final Exclusion exclusion;
|
|
final Instance instance;
|
|
final LeakReference leakReference;
|
|
final LeakNode parent;
|
|
|
|
LeakNode(Exclusion exclusion, Instance instance, LeakNode leakNode, LeakReference leakReference) {
|
|
this.exclusion = exclusion;
|
|
this.instance = instance;
|
|
this.parent = leakNode;
|
|
this.leakReference = leakReference;
|
|
}
|
|
}
|