Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ConvertToNestedIfIntention
/
after.java.template
blob: 87072e2c61f49212c1e7bbd80c4b6b9485b20a3f [
file
] [
log
] [
blame
]
public
class
X
{
boolean
f
(
boolean
a
)
{
if
(
a
)
{
if
(
b
)
{
return
true
;
}
}
return
false
;
}
}