Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ConvertVarargParameterToArrayIntention
/
before.java.template
blob: b9f1d2b0e53dc9d28cc3fb4ddcd0899750d28fb6 [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(<
spot
>
int
i
,
String
...
strings
</
spot
>)
{
}
void
g
(
String
string
)
{
f
(
1
,
string
);
}
}