Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 3a1bc14

Browse files
committed
remove commented code
1 parent 33ea7c9 commit 3a1bc14

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/com/mathworks/ci/TestResultsViewAction.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,7 @@ private void getTestSessionResults(List<MatlabTestFile> testSessionResults, JSON
137137
matlabTestFile.setPath(this.workspace.getName() + File.separator + relPath.toString());
138138

139139
MatlabTestCase matlabTestCase = new MatlabTestCase(matlabTestCaseName);
140-
// if (matlabTestCaseResult.get("Duration") instanceof Long) {
141140
matlabTestCase.setDuration(new BigDecimal(matlabTestCaseResult.get("Duration").toString()));
142-
// } else if (matlabTestCaseResult.get("Duration") instanceof Double) {
143-
// matlabTestCase.setDuration(((Double) matlabTestCaseResult.get("Duration")));
144-
// }
145141

146142
if ((boolean) matlabTestCaseResult.get("Failed")){
147143
matlabTestCase.setStatus(TestStatus.FAILED);

0 commit comments

Comments
 (0)