Loading core/java/android/os/Parcel.java +5 −3 Original line number Diff line number Diff line Loading @@ -4639,9 +4639,11 @@ public final class Parcel { object = readValue(type, loader, clazz, itemTypes); int actual = dataPosition() - start; if (actual != length) { Slog.wtfStack(TAG, "Unparcelling of " + object + " of type " + Parcel.valueTypeToString(type) + " consumed " + actual + " bytes, but " + length + " expected."); String error = "Unparcelling of " + object + " of type " + Parcel.valueTypeToString(type) + " consumed " + actual + " bytes, but " + length + " expected."; Slog.wtfStack(TAG, error); throw new BadParcelableException(error); } } else { object = readValue(type, loader, clazz, itemTypes); Loading Loading
core/java/android/os/Parcel.java +5 −3 Original line number Diff line number Diff line Loading @@ -4639,9 +4639,11 @@ public final class Parcel { object = readValue(type, loader, clazz, itemTypes); int actual = dataPosition() - start; if (actual != length) { Slog.wtfStack(TAG, "Unparcelling of " + object + " of type " + Parcel.valueTypeToString(type) + " consumed " + actual + " bytes, but " + length + " expected."); String error = "Unparcelling of " + object + " of type " + Parcel.valueTypeToString(type) + " consumed " + actual + " bytes, but " + length + " expected."; Slog.wtfStack(TAG, error); throw new BadParcelableException(error); } } else { object = readValue(type, loader, clazz, itemTypes); Loading