Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/copybara-sync
/
.
/
docs
/
bugpattern
/
PrimitiveArrayPassedToVarargsMethod.md
blob: 748d775a6de220055695d6855fcb842f91203984 [
file
] [
log
] [
blame
] [
view
] [
edit
]
When
you
pass
a primitive array
as
the only argument to a varargs method
,
the
primitive array
is
autoboxed
into
a single
-
element
Object
array
.
This
is
usually
not
what was intended
.