Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
resources-en
/
src
/
intentionDescriptions
/
DelegateWithDefaultParamValueIntentionAction
/
after.java.template
blob: 97307fd767c3098137c172ca831b8c3bdbc20a76 [
file
] [
log
] [
blame
]
class
Test
{
void
foo
(
int
a
)
{
foo
(
a
,
<spot>
|</
spot
>);
}
void
foo
(
int
a
,
int
b
){
//do smth
}
}