Coding style.

This commit is contained in:
Julien Fontanet
2016-02-10 10:48:02 +01:00
parent f3b368fae4
commit 4a95f5cd9d

View File

@@ -65,11 +65,11 @@ class BackupReportsXoPlugin {
forEach(status.calls, call => {
// Ignore call if it's not a Backup a Snapshot or a Disaster Recovery.
if (call.method !== 'vm.rollingBackup' &&
call.method !== 'vm.rollingSnapshot' &&
call.method !== 'vm.rollingDrCopy' &&
call.method !== 'vm.deltaCopy' &&
if (call.method !== 'vm.deltaCopy' &&
call.method !== 'vm.rollingDeltaBackup') {
call.method !== 'vm.rollingDrCopy' &&
call.method !== 'vm.rollingSnapshot' &&
call.method !== 'vm.rollingBackup')
return
}