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

@@ -10,7 +10,7 @@ class SwitchKeymapAction extends KeyAction implements Serializable<SwitchKeymapA
set keymapId(value) {
if (!TypeChecker.isUInt8Valid(value)) {
throw 'Invalid SwitchKeymapAction.keymapId: ${value}';
throw `Invalid SwitchKeymapAction.keymapId: ${value}`;
}
this._keymapId = value;
}