Skip to content

Commit 7fe172c

Browse files
committed
collection/info.js: remove extra semicolons from the functions definitions.
Should be in eb2898a commit. No code changes.
1 parent 00d426a commit 7fe172c

File tree

1 file changed

+2
-2
lines changed
  • src/main/javascript/collection

1 file changed

+2
-2
lines changed

src/main/javascript/collection/info.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ function drawChart(containerId, dataTable) {
1717
};
1818
var chart = new google.visualization.PieChart(document.getElementById(containerId));
1919
chart.draw(dataTable, options);
20-
};
20+
}
2121

2222
function createDataTable(stat) {
2323
var table = new google.visualization.DataTable();
2424
table.addColumn('string', 'Category/Country');
2525
table.addColumn('number', 'Quantity of stamps');
2626
table.addRows(stat);
2727
return table;
28-
};
28+
}

0 commit comments

Comments
 (0)