Remove obsolete function call in promise chain

Promise was made obsolete by 206966a5ae,
but never completely removed.

Change-Id: I1fde9c281b5a4e446bb31e8a0bac10e4d210672b
(cherry picked from commit 4ff48f6b0e)
This commit is contained in:
Kasper Nilsson
2017-10-19 11:11:42 -07:00
committed by Paladox none
parent 91dc742edb
commit f8be3ee976

View File

@@ -426,12 +426,7 @@
_getFiles() {
return this.$.restAPI.getChangeFilesAsSpeciallySortedArray(
this.changeNum, this.patchRange).then(files => {
// Append UI-specific properties.
return files.map(file => {
return file;
});
});
this.changeNum, this.patchRange);
},
/**