jimu-decompiled/sources/androidx/appcompat/view/menu/BaseWrapper.java
2025-05-13 19:24:51 +02:00

14 lines
278 B
Java

package androidx.appcompat.view.menu;
/* loaded from: classes.dex */
class BaseWrapper<T> {
final T a;
BaseWrapper(T t) {
if (t == null) {
throw new IllegalArgumentException("Wrapped Object can not be null.");
}
this.a = t;
}
}