Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
;
}
}