Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ConvertInterfaceToClassIntention
/
after.java.template
blob: e2596089c1cb2ed9f1fcd46d1cb4952f30147376 [
file
]
public
abstract
class
X
{
public
abstract
void
f
();
}
class
Y
extends
X
{
public
void
f
()
{
}
}