Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ConvertInterfaceToClassIntention
/
before.java.template
blob: 6ddc592c51657fff5971c8203c9586ddf44c0daf [
file
] [
log
] [
blame
]
<spot>
public interface X
</spot>
{
void f();
}
class Y implements X {
public void f() {
}
}