mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
20 lines
547 B
Java
20 lines
547 B
Java
package androidx.appcompat.widget;
|
|
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.PorterDuff;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class TintInfo {
|
|
public boolean mHasTintList;
|
|
public boolean mHasTintMode;
|
|
public ColorStateList mTintList;
|
|
public PorterDuff.Mode mTintMode;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public void clear() {
|
|
this.mTintList = null;
|
|
this.mHasTintList = false;
|
|
this.mTintMode = null;
|
|
this.mHasTintMode = false;
|
|
}
|
|
}
|