Lint compliance

This commit is contained in:
yflory
2017-12-05 18:10:53 +01:00
parent 9eb33e39e6
commit 61935500f4
2 changed files with 6 additions and 6 deletions

View File

@@ -652,13 +652,13 @@ define([
}
// Drive
case 'DRIVE_LOG': {
common.drive.onLog.fire(data);
common.drive.onLog.fire(data); break;
}
case 'DRIVE_CHANGE': {
common.drive.onChange.fire(data);
common.drive.onChange.fire(data); break;
}
case 'DRIVE_REMOVE': {
common.drive.onRemove.fire(data);
common.drive.onRemove.fire(data); break;
}
}
};