Use template strings where needed.

This commit is contained in:
László Monda
2016-03-30 22:17:07 +02:00
parent 45dc8a520f
commit d2f3ec62f0
8 changed files with 12 additions and 12 deletions

View File

@@ -25,7 +25,7 @@ class DualRoleKeystrokeAction extends KeyAction implements Serializable<DualRole
set longPressAction(value) {
if (!DualRoleKeystrokeAction.isDualRoleKeystrokeActionValid(value)) {
throw 'Invalid DualRoleKeystrokeAction.longPressAction: ${value}';
throw `Invalid DualRoleKeystrokeAction.longPressAction: ${value}`;
}
this._longPressAction = value;
}