mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
To compensate somewhat, inline parameters that are executed as the first expression inside the method (or previous expressions are harmless) GitOrigin-RevId: ff4bc5ce45bfb3e12a83dc8ccb97b1767558bcbe
22 lines
373 B
Plaintext
22 lines
373 B
Plaintext
class AAA {
|
|
void fff(Project myProject) {
|
|
ensureFilesWritable(new String[1]).hasReadonlyFiles();
|
|
}
|
|
|
|
private Status ensureFilesWritable(final String[] strings) {
|
|
return new Status(strings);
|
|
}
|
|
|
|
class Status {
|
|
public Status(final String[] strings) {
|
|
|
|
}
|
|
|
|
boolean hasReadonlyFiles() {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class Project {
|
|
}
|
|
} |