mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 13:35:58 +07:00
13 lines
231 B
Java
13 lines
231 B
Java
// "Extract common part removing branch" "true"
|
|
|
|
import java.io.*;
|
|
|
|
class F {
|
|
boolean x(File file) {
|
|
// quick fail
|
|
if (file.getPath().contains("/test/")) {
|
|
System.out.println();
|
|
}
|
|
return false;
|
|
}
|
|
} |