Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nikola Simidjievski
ProBMoT Release
Commits
0d1c0913
Commit
0d1c0913
authored
Jan 10, 2019
by
Nikola Simidjievski
Browse files
minor bug fix
parent
c7cce0d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/task/Task.java
View file @
0d1c0913
...
...
@@ -856,7 +856,7 @@ public class Task {
this
.
sim_out
.
println
(
"DATASET_ID:"
+
datasets
.
get
(
i
).
getId
());
try
{
this
.
sim_out
.
println
(
eModel
.
getSimulations
().
get
(
i
));
}
catch
(
NullPointerException
e
)
{
}
catch
(
NullPointerException
|
IndexOutOfBoundsException
e
)
{
this
.
sim_out
.
println
(
"FAILED SIMULATION"
);
}
...
...
@@ -875,7 +875,7 @@ public class Task {
this
.
eval_out
.
println
(
"DATASET_ID:"
+
testDatasets
.
get
(
j
).
getId
());
try
{
this
.
eval_out
.
println
(
eModel
.
getEvaluations
().
get
(
j
));
}
catch
(
NullPointerException
e
)
{
}
catch
(
NullPointerException
|
IndexOutOfBoundsException
e
)
{
this
.
eval_out
.
println
(
"FAILED SIMULATION"
);
}
}
...
...
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