Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
resources-en
/
src
/
intentionDescriptions
/
CreateLocalVarFromInstanceofAction
/
after.java.template
blob: 9ad3fb773f6f5b6b7ebea91897ab368a2a28991d [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(
Object
action
)
{
if
(
action
instanceof
Runnable
)
{
Runnable
runnable
=
(
Runnable
)
action
;
}
}
}