misc stubs for OctoDroid version 4.6.12

This commit is contained in:
Julian Winkler
2024-10-04 16:15:44 +02:00
parent 9f728c77f9
commit 0627ae7e54
5 changed files with 15 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import android.content.res.ColorStateList;
public class RippleDrawable extends LayerDrawable {
public RippleDrawable(ColorStateList colorStateList, Drawable drawable, Drawable drawable2) {
super(new Drawable[] {drawable});
super(drawable == null ? new Drawable[] {} : new Drawable[] {drawable});
}
}