Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
AnnotateOverriddenMethodsIntention
/
before.java.template
blob: 0d779dda0813bf523a9756cf67516c8827155175 [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(<
spot
>
@Nullable
</
spot
>
String
s
)
{}
}
class
Y
extends
X
{
void
f
(
String
s
)
{}
}
class
Z
extends
Y
{
void
f
(
String
s
)
{}
}