From a7dd058d214b917af9a653670bd1b236484bc317 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Fri, 18 Oct 2019 09:52:38 +0200 Subject: [PATCH] Remove obsolete parens --- app/services/kredits.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/services/kredits.js b/app/services/kredits.js index 30e3eb4..87dcb50 100644 --- a/app/services/kredits.js +++ b/app/services/kredits.js @@ -210,8 +210,8 @@ export default Service.extend({ getContributors () { return this.kredits.Contributor.all() - .then((contributors) => { - return contributors.map((contributor) => { + .then(contributors => { + return contributors.map(contributor => { return Contributor.create(contributor); }); });