mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
23 lines
413 B
Plaintext
23 lines
413 B
Plaintext
class AAA {
|
|
void fff(Project myProject) {
|
|
final String[] strings = new String[1];
|
|
ensureFilesWritable(strings).hasReadonlyFiles();
|
|
}
|
|
|
|
private Status ensureFilesWritable(final String[] strings) {
|
|
return new Status(strings);
|
|
}
|
|
|
|
class Status {
|
|
public Status(final String[] strings) {
|
|
|
|
}
|
|
|
|
boolean hasReadonlyFiles() {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class Project {
|
|
}
|
|
} |