Skip to content

Commit 5cf9fd6

Browse files
committed
removed t.jdkDate case
1 parent b3d147b commit 5cf9fd6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • test-result-summary-client/src/Dashboard/Widgets/Graph

test-result-summary-client/src/Dashboard/Widgets/Graph/Dacapo.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ export default class Dacapo extends Component {
6565

6666
// combine results having the same JDK build date
6767
results.forEach((t, i) => {
68-
let jdkDate = t.jdkDate || (t.timestamp ? new Date(t.timestamp).toISOString().slice(0,10) : null);
68+
//t.jdkDate is currently not in use
69+
let jdkDate = (t.timestamp ? new Date(t.timestamp).toISOString().slice(0,10) : null);
6970
if (t.buildResult !== 'SUCCESS' || !jdkDate) return;
7071
jdkDate = ' ' + jdkDate.replaceAll('-', '');
7172
resultsByJDKBuild[jdkDate] = resultsByJDKBuild[jdkDate] || [];

0 commit comments

Comments
 (0)