Skip to content

Commit

Permalink
CLDR-8956 accept suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Steven R. Loomis <srl295@gmail.com>
  • Loading branch information
macchiati and srl295 authored Mar 7, 2023
1 parent 76bb398 commit 5f41b8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static void main(String[] args) throws IOException {
try (Stream<Path> stream = Files.list(Paths.get(CLDRPaths.BASE_DIRECTORY+"docs","ldml"))) {
stream.forEach(x -> {
try {
if (!Files.isDirectory(x)) {
if (Files.isReadable(x) && x.endsWith(".md") && x.startsWith("tr35") ) {
process(x);
}
} catch (IOException e) {
Expand Down

0 comments on commit 5f41b8f

Please sign in to comment.