Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
resources-en
/
src
/
intentionDescriptions
/
ReplaceImplementsWithStaticImportAction
/
before.java.template
blob: 40f84c692df54fab3a23fb2cd094dc22f8bf6464 [
file
] [
log
] [
blame
]
public
class
X
implements
<spot>
I
</
spot
>
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
FOO
);
}
}
interface
I
{
String
FOO
=
"foo"
;
}