You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
19 lines
298 B
Java
19 lines
298 B
Java
|
|
package android.os;
|
||
|
|
|
||
|
|
public class Parcel {
|
||
|
|
|
||
|
|
public static Parcel obtain() {
|
||
|
|
return new Parcel();
|
||
|
|
}
|
||
|
|
|
||
|
|
public void writeBundle(Bundle bundle) {}
|
||
|
|
|
||
|
|
public Bundle readBundle(ClassLoader loader) {
|
||
|
|
return new Bundle();
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDataPosition(int position) {}
|
||
|
|
|
||
|
|
public void recycle() {}
|
||
|
|
}
|