Sign in
android
/
platform
/
tools
/
idea
/
c6218e46d5d2017e987ecdbd99b318a95c42abc0
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
IfToAssertionIntention
/
before.java.template
blob: b6dad71f2e90fe1e927863ff90c494cc82b861df [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(
Object
foo
)
{
<spot>
if
</
spot
>
(
foo
==
null
)
{
throw
new
AssertionError
(
"Argument is null"
);
}
}
}