refactor: remove redundant call to normalizeOptions (#4671)

Removes redundant call to `normalizeOptions` (already done in preceding line)

8ec5432768/src/main/core.js (L260-L263)
master
Tony Trinh 2018-06-11 21:56:16 -05:00 committed by Ika
parent 5646573ad7
commit dcc060a5a5
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ function format(text, opts) {
module.exports = {
formatWithCursor(text, opts) {
opts = normalizeOptions(opts);
return format(text, normalizeOptions(opts));
return format(text, opts);
},
parse(text, opts, massage) {