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