- 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
53 lines
1.6 KiB
Java
53 lines
1.6 KiB
Java
package androidx.sqlite.db.framework;
|
|
|
|
import android.database.sqlite.SQLiteProgram;
|
|
import androidx.sqlite.db.SupportSQLiteProgram;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class FrameworkSQLiteProgram implements SupportSQLiteProgram {
|
|
private final SQLiteProgram delegate;
|
|
|
|
public FrameworkSQLiteProgram(SQLiteProgram delegate) {
|
|
Intrinsics.checkNotNullParameter(delegate, "delegate");
|
|
this.delegate = delegate;
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteProgram
|
|
public void bindNull(int i) {
|
|
this.delegate.bindNull(i);
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteProgram
|
|
public void bindLong(int i, long j) {
|
|
this.delegate.bindLong(i, j);
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteProgram
|
|
public void bindDouble(int i, double d) {
|
|
this.delegate.bindDouble(i, d);
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteProgram
|
|
public void bindString(int i, String value) {
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this.delegate.bindString(i, value);
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteProgram
|
|
public void bindBlob(int i, byte[] value) {
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
this.delegate.bindBlob(i, value);
|
|
}
|
|
|
|
@Override // androidx.sqlite.db.SupportSQLiteProgram
|
|
public void clearBindings() {
|
|
this.delegate.clearBindings();
|
|
}
|
|
|
|
@Override // java.io.Closeable, java.lang.AutoCloseable
|
|
public void close() {
|
|
this.delegate.close();
|
|
}
|
|
}
|