John Ericksen

Results 183 comments of John Ericksen

See my comment here @tgobbens @Maxxan : https://github.com/johncarl81/parceler/issues/394#issuecomment-881971239 . Can you give me any input on this?

It's fixed, just not pushed to maven central under a release.

Hmm, do you have a class that you've annotated with `@Parcel` that has generics defined?

What version are you using @WonderCsabo?

Hmm, looks like I need to lock down the `implementations` field a bit more. By default, Parceler doesn't perform a runtime class check on the contents of your list. It...

Could you share the full details of that class? I wonder if changing `LinkedHashMap` to just `Map` would make a difference.

Ugh, sorry, I was too quick in giving an example... yeah, you're right you'd have to create a different converter for each type. I need to fix the converter validation...

Ah, I think it's tripping up on something in `BaseObservable`. Would you try the following configuration: ```java @Parcel(analyze = TestParcel.class) public class TestParcel extends BaseObservable { protected LinkedHashMap promo; public...

In general I opt for using the most general interface I can - typically using the interface over the implementation. In this case `LinkedHashMap` is an implementation of `Map`. Parceler...

One idea brought up before was to add an annotation property to trigger Parceler to use the `Parcels.wrap/unwrap` for polymetric behavior instead of having to deal with a converter. Something...