{@inheritDoc} @since 2016/10/27
(Path __p, Object __s)
| 1066 | * @since 2016/10/27 |
| 1067 | */ |
| 1068 | @Override |
| 1069 | public void accept(Path __p, Object __s) |
| 1070 | throws IOException |
| 1071 | { |
| 1072 | // Ignore directories |
| 1073 | if (Files.isDirectory(__p)) |
| 1074 | return; |
| 1075 | |
| 1076 | // Add to sources if it is a source file |
| 1077 | if (__p.getFileName().toString().endsWith(".java")) |
| 1078 | fsources.add(__p.toFile()); |
| 1079 | } |
| 1080 | }); |
| 1081 | |
| 1082 | // If there are no sources to compile, do not bother |
nothing calls this directly
no test coverage detected