mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
15 lines
236 B
Java
15 lines
236 B
Java
// "Pull method 'foo' to 'Foo' and make it abstract" "true"
|
|
public class Test {
|
|
void bar() {
|
|
abstract class Foo {
|
|
abstract void foo();
|
|
}
|
|
class FooImpl extends Foo {
|
|
@Override
|
|
void foo(){}
|
|
}
|
|
}
|
|
}
|
|
|
|
|