Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
e10483ba
Commit
e10483ba
authored
Mar 08, 2019
by
adrianhollow
Browse files
removed debugging steps
parent
49126074
Pipeline
#96265
failed with stages
in 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereSimulator/src/org/vadere/simulator/entrypoints/cmd/commands/ScenarioRunSubCommand.java
View file @
e10483ba
...
...
@@ -56,8 +56,6 @@ public class ScenarioRunSubCommand implements SubCommandRunner {
Path
scenarioFile
=
Paths
.
get
(
ns
.
getString
(
"scenario-file"
));
if
(!
scenarioFile
.
toFile
().
exists
()
||
!
scenarioFile
.
toFile
().
isFile
()){
boolean
exists
=
scenarioFile
.
toFile
().
exists
();
boolean
isFile
=
scenarioFile
.
toFile
().
isFile
();
logger
.
error
(
"scenario-file does not exist, is not a regular file or you do not have read permissions: "
+
scenarioFile
.
toFile
().
toString
());
System
.
exit
(-
1
);
...
...
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