mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
26 lines
522 B
Java
26 lines
522 B
Java
class AAA {
|
|
void fff(Project myProject) {
|
|
ensureFilesWritable(myProject, new String[1]);
|
|
}
|
|
|
|
private boolean ensu<caret>reFilesWritable(final Project project, final String... strings) {
|
|
return !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 {
|
|
}
|
|
} |