Hi i have problem with a class i want to pass in an intent by putting it into the putExtras() Its serializable and the code looks like this:
public abstract
How are you declaring ObjectB before you pass it into the bundle? From what I understand of your question you are getting no error when you pass in the bundle, only when removing it. Try retreiving your ObjectB into an ObjectB type directly like this:
ObjectB y = (ObjectB) getIntent().getExtras().get("blabla");