File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
metafacture-flux/src/main/java/org/metafacture/flux Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 33
33
import java .io .PrintStream ;
34
34
import java .lang .reflect .InvocationTargetException ;
35
35
import java .lang .reflect .Method ;
36
- import java .nio .file .Files ;
37
36
import java .util .ArrayList ;
38
37
import java .util .Arrays ;
39
38
import java .util .Collection ;
@@ -205,7 +204,7 @@ private static Collection<String> getAvailableArguments(final Class<?> moduleCla
205
204
206
205
private static void loadExamples () throws IOException {
207
206
final File f = new File (PATH_TO_EXAMPLES );
208
- if (Files .exists (f . toPath () )) {
207
+ if (f .exists ()) {
209
208
final BufferedReader bufferedReader = new BufferedReader (new FileReader (f ));
210
209
String line ;
211
210
while ((line = bufferedReader .readLine ()) != null ) {
You can’t perform that action at this time.
0 commit comments