Skip to content

Commit

Permalink
Remove warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Feb 16, 2025
1 parent 85eec8c commit 7a19f60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ private Object getReorderedAttributes(final Object attribute, final int[] oldToN
if (attribute.getClass().isArray()) {
tokens = (Object[]) attribute;
} else if (List.class.isAssignableFrom(attribute.getClass())) {
tokens = ((List) attribute).toArray();
tokens = ((List<?>) attribute).toArray();
} else {
tokens = attribute.toString().split(VCFConstants.INFO_FIELD_ARRAY_SEPARATOR);
}
Expand Down

0 comments on commit 7a19f60

Please sign in to comment.