Skip to content

Commit

Permalink
Update metafacture-flux/src/main/java/org/metafacture/flux/HelpPrinte…
Browse files Browse the repository at this point in the history
…r.java

Co-authored-by: Jens Wille <jens.wille@hbz-nrw.de>
  • Loading branch information
dr0i and blackwinter authored Nov 21, 2023
1 parent 3498dc8 commit 973d392
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private static Collection<String> getAvailableArguments(final Class<?> moduleCla

private static void loadExamples() throws IOException {
final File f = new File(PATH_TO_EXAMPLES);
if (Files.exists(f.toPath())) {
if (f.exists()) {
final BufferedReader bufferedReader = new BufferedReader(new FileReader(f));
String line;
while ((line = bufferedReader.readLine()) != null) {
Expand Down

0 comments on commit 973d392

Please sign in to comment.