Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
resources-en
/
src
/
intentionDescriptions
/
SwapIfStatementsIntentionAction
/
after.java.template
blob: f819c9e0e197a84071a224977d348fba1bc08ebe [
file
] [
log
] [
blame
]
if
(
otherCondition
)
{
doAnotherAction
();
}
else
if
(
someCondition
)
{
doSomeAction
();
}
else
{
defaultAction
();
}