mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
14 lines
223 B
Java
14 lines
223 B
Java
// "Make 'Bar.f' protected" "true"
|
|
public class Foo extends Bar{
|
|
void foo() {
|
|
new Runnable(){
|
|
public void run() {
|
|
f();
|
|
}
|
|
};
|
|
}
|
|
}
|
|
class Bar {
|
|
protected void f(){}
|
|
}
|