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