Processes everything. @throws IOException On read/write errors. @since 2017/10/26
()
| 89 | * @since 2017/10/26 |
| 90 | */ |
| 91 | public void run() |
| 92 | throws IOException |
| 93 | { |
| 94 | Path path = this.path; |
| 95 | |
| 96 | // Obtain Java source files |
| 97 | Set<Path> files = new TreeSet<>(); |
| 98 | Files.walk(path).filter((__p) -> !Files.isDirectory(__p)). |
| 99 | filter((__p) -> __p.toString().endsWith(".java")). |
| 100 | forEach(files::add); |
| 101 | |
| 102 | // Go through all files since they must be parsed to recode versions |
| 103 | for (Path file : files) |
| 104 | __process(file); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Processes the given path. |
nothing calls this directly
no test coverage detected