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 <[email protected]>
  • Loading branch information
dr0i and blackwinter committed Nov 21, 2023
1 parent 3498dc8 commit ab656cb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import java.io.PrintStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
Expand Down Expand Up @@ -205,7 +204,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 ab656cb

Please sign in to comment.