Skip to content

Commit

Permalink
fix blank space issue (#15206)
Browse files Browse the repository at this point in the history
  • Loading branch information
BethanyZhou authored Jun 8, 2021
1 parent 5498b82 commit 733d2ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DiskPool/custom/New-AzDiskPool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ param(
if ($PSBoundParameters.ContainsKey("DiskId")){
$disk = @()
for ($i = 0; $i -lt $DiskId.Count; $i++) {
$diskObject = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.DiskPool.Models.Api20210401Preview.Disk
$diskObject = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.DiskPool.Models.Api20210401Preview.Disk
$diskObject.Id = $DiskId[$i]
$disk += $diskObject
}
Expand Down
2 changes: 1 addition & 1 deletion src/DiskPool/custom/Update-AzDiskPool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ param(
if ($PSBoundParameters.ContainsKey("DiskId")){
$disk = @()
for ($i = 0; $i -lt $DiskId.Count; $i++) {
$diskObject = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.DiskPool.Models.Api20210401Preview.Disk
$diskObject = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.DiskPool.Models.Api20210401Preview.Disk
$diskObject.Id = $DiskId[$i]
$disk += $diskObject
}
Expand Down

0 comments on commit 733d2ff

Please sign in to comment.