Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
resources-en
/
src
/
intentionDescriptions
/
InvertIfConditionAction
/
after.java.template
blob: 435aa33e817d44d221d2f4faaeb80557189db6e0 [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(
boolean
a
,
boolean
b
)
{
if
(!
a
)
{
return
;
}
b
=
false
;
}
}