parceler icon indicating copy to clipboard operation
parceler copied to clipboard

$$Parcelable classes prevent using `javac -Xlint:all -Werror`

Open TWiStErRob opened this issue 7 years ago • 1 comments

  missing type arguments for generic class List<E>
  where E is a type-variable:
    E extends Object declared in interface List
build\generated\source\apt\debug\...\Domain$$Parcelable.java:115: warning: [rawtypes] found raw type: List
            java.util.List list$$2 = list$$3;
                     ^
  missing type arguments for generic class List<E>
  where E is a type-variable:
    E extends Object declared in interface List
build\generated\source\apt\debug\...\Domain$$Parcelable.java:99: warning: [rawtypes] found raw type: List
            List list$$0 = list$$1;
            ^

Can we add a similar suppression as #93 for rawtypes? Though the problem is probably in transfuse (#100)?

TWiStErRob avatar Mar 13 '18 10:03 TWiStErRob

Sure, PR?

johncarl81 avatar Mar 14 '18 01:03 johncarl81