Skip to content

Commit 6e076a7

Browse files
author
SDKAuto
committed
CodeGen from PR 12543 in Azure/azure-rest-api-specs
Merge cfaa6c8bda15abfbe9246acfb01351f45e028a73 into 5e076b3d3a0d6b5c9f083a0fddf0e3082137b0c6
1 parent a9245b7 commit 6e076a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/network/arm-network/src/networkManagementClientContext.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class NetworkManagementClientContext extends msRestAzure.AzureServiceClie
3737
if (!options) {
3838
options = {};
3939
}
40-
if (!options.userAgent) {
40+
if(!options.userAgent) {
4141
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4242
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4343
}
@@ -51,10 +51,10 @@ export class NetworkManagementClientContext extends msRestAzure.AzureServiceClie
5151
this.credentials = credentials;
5252
this.subscriptionId = subscriptionId;
5353

54-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
54+
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5555
this.acceptLanguage = options.acceptLanguage;
5656
}
57-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
57+
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5858
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
5959
}
6060
}

0 commit comments

Comments
 (0)