Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package org.greenrobot.greendao.query;
import org.greenrobot.greendao.AbstractDao;
/* loaded from: classes2.dex */
abstract class AbstractQueryWithLimit<T> extends AbstractQuery<T> {
protected final int f;
protected final int g;
protected AbstractQueryWithLimit(AbstractDao<T, ?> abstractDao, String str, String[] strArr, int i, int i2) {
super(abstractDao, str, strArr);
this.f = i;
this.g = i2;
}
@Override // org.greenrobot.greendao.query.AbstractQuery
public AbstractQueryWithLimit<T> a(int i, Object obj) {
if (i < 0 || !(i == this.f || i == this.g)) {
super.a(i, obj);
return this;
}
throw new IllegalArgumentException("Illegal parameter index: " + i);
}
}