Skip to content

Commit

Permalink
remove unnecessary new line
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Apr 26, 2018
1 parent f74a37a commit 5b55d65
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/client/sandbox/event/simulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,7 @@ export default class EventSimulator {
let modifiersString = '';

for (const modifier in eventUtils.KEYBOARD_MODIFIERS_PARAMETER) {
if (nativeMethods.objectHasOwnProperty.call(eventUtils.KEYBOARD_MODIFIERS_PARAMETER, modifier) &&
args[modifier])
if (nativeMethods.objectHasOwnProperty.call(eventUtils.KEYBOARD_MODIFIERS_PARAMETER, modifier) && args[modifier])
modifiersString += eventUtils.KEYBOARD_MODIFIERS_PARAMETER[modifier] + ' ';
}

Expand Down

0 comments on commit 5b55d65

Please sign in to comment.