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