Skip to content

Commit

Permalink
Make RudderTyperUtils.java compilable with -Werror (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob authored Dec 16, 2024
1 parent 9103ecb commit 4fe0627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/generators/android/templates/RudderTyperUtils.java.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ public final class RudderTyperUtils {
return props;
}

List p = new ArrayList<>();
List<Object> p = new ArrayList<>();
for(Object item : props) {
if (item instanceof List) {
p.add(serializeList((List) item));
p.add(serializeList((List<?>) item));
} else if(item instanceof SerializableProperties) {
p.add(((SerializableProperties) item).toRudderProperty());
} else {
Expand Down

0 comments on commit 4fe0627

Please sign in to comment.