mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
16 lines
188 B
Java
16 lines
188 B
Java
class Test {
|
|
{
|
|
setFont(getFont().substring((int)fontSize()));
|
|
}
|
|
|
|
void setFont(String s) {}
|
|
|
|
String getFont() {
|
|
return "";
|
|
}
|
|
|
|
double fontSize () {
|
|
return 1.0;
|
|
}
|
|
|
|
} |