Skip to content
Snippets Groups Projects
Commit ce8fdeb6 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unused variable intialization removed

parent b6e60023
No related branches found
No related tags found
1 merge request!295Resolve "alternative to google maps api way of visualizing maps"
......@@ -112,13 +112,11 @@ LogListDialog.prototype.downloadAll = function (data, callback) {
projectId: self._projectId,
level: self._level
}).then(function (logEntries) {
var response = "";
var tmp = [];
for (var i = 0; i < logEntries.data.length; i++) {
tmp.push(logEntries.data[i].content);
}
response = tmp.join("\n");
return response;
return tmp.join("\n");
});
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment