Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Dockerized Testing Toolkit
Testrunner OpenJDK11 JUnit5-Jupiter
Commits
a6f72b00
Verified
Commit
a6f72b00
authored
4 years ago
by
Lukas Wiest
Browse files
Options
Download
Email Patches
Plain Diff
refactor(app): buildClasspath: only add path if exists
parent
7c086338
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/hftstuttgart/modocot/Testrunner.java
+5
-1
src/main/java/de/hftstuttgart/modocot/Testrunner.java
with
5 additions
and
1 deletion
+5
-1
src/main/java/de/hftstuttgart/modocot/Testrunner.java
+
5
-
1
View file @
a6f72b00
...
...
@@ -128,7 +128,11 @@ public class Testrunner
}
}
else
{
files
.
add
(
new
File
(
path
));
File
file
=
new
File
(
path
);
if
(
file
.
exists
())
{
files
.
add
(
file
);
}
}
}
return
files
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets