Skip to content

Commit f18b148

Browse files
committed
incorporated PR comments
1 parent 5b8b351 commit f18b148

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultClient.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,5 @@ public GetResourceStorageConfigResponse GetVaultStorageType(string resouceGroupN
9999
{
100100
return this.recoveryServicesClient.Vaults.GetResourceStorageConfig(resouceGroupName, vaultName, this.GetRequestHeaders());
101101
}
102-
103102
}
104103
}

src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,6 @@ public AcsNamespace(UploadCertificateResponse acsDetails)
524524
this.HostName = (acsDetails.Properties as ACSCertificateProperties).GlobalAcsHostName;
525525
this.Namespace = (acsDetails.Properties as ACSCertificateProperties).GlobalAcsNamespace;
526526
this.ResourceProviderRealm = (acsDetails.Properties as ACSCertificateProperties).GlobalAcsRPRealm;
527-
528527
}
529528

530529
/// <summary>

src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System;
16-
using System.Linq;
17-
using System.Management.Automation;
18-
using System.Security.Cryptography.X509Certificates;
1915
using Microsoft.Azure.Commands.Common.Authentication.Models;
16+
using Microsoft.Azure.Commands.RecoveryServices.Properties;
17+
using Microsoft.Azure.Management.RecoveryServices.Models;
2018
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
19+
using System;
20+
using System.Globalization;
2121
using System.IO;
22-
using System.Xml;
22+
using System.Linq;
23+
using System.Management.Automation;
2324
using System.Runtime.Serialization;
25+
using System.Security.Cryptography.X509Certificates;
2426
using System.Text;
25-
using System.Globalization;
26-
using Microsoft.Azure.Management.RecoveryServices.Models;
27-
using Microsoft.Azure.Commands.RecoveryServices.Properties;
27+
using System.Xml;
2828

2929
namespace Microsoft.Azure.Commands.RecoveryServices
3030
{
@@ -121,9 +121,8 @@ public override void ExecuteCmdlet()
121121
}
122122
else
123123
{
124-
this.GetVaultSettingsFile();
125-
}
126-
124+
this.GetVaultSettingsFile();
125+
}
127126
}
128127
catch (AggregateException aggregateEx)
129128
{

0 commit comments

Comments
 (0)