- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
24 lines
1016 B
Java
24 lines
1016 B
Java
package androidx.room;
|
|
|
|
import androidx.sqlite.db.SupportSQLiteOpenHelper;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class AutoClosingRoomOpenHelperFactory implements SupportSQLiteOpenHelper.Factory {
|
|
private final AutoCloser autoCloser;
|
|
private final SupportSQLiteOpenHelper.Factory delegate;
|
|
|
|
public AutoClosingRoomOpenHelperFactory(SupportSQLiteOpenHelper.Factory delegate, AutoCloser autoCloser) {
|
|
Intrinsics.checkNotNullParameter(delegate, "delegate");
|
|
Intrinsics.checkNotNullParameter(autoCloser, "autoCloser");
|
|
this.delegate = delegate;
|
|
this.autoCloser = autoCloser;
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteOpenHelper.Factory
|
|
public AutoClosingRoomOpenHelper create(SupportSQLiteOpenHelper.Configuration configuration) {
|
|
Intrinsics.checkNotNullParameter(configuration, "configuration");
|
|
return new AutoClosingRoomOpenHelper(this.delegate.create(configuration), this.autoCloser);
|
|
}
|
|
}
|