Skip to content

Commit 901061a

Browse files
committed
Because Script Analyzer is very angry with these ;)
1 parent 930b4d9 commit 901061a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

source/Public/Invoke-FabricRestMethod.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Function Invoke-FabricRestMethod {
191191
if ($null -ne $response) {
192192
$continuationToken = Get-FabricContinuationToken -Response $response
193193

194-
if ($ExtractValue -eq 'Auto' -and $response.value -ne $null) {
194+
if ($ExtractValue -eq 'Auto' -and $null -ne $response.value) {
195195
$ExtractValue = 'True'
196196
}
197197
if ($ExtractValue -eq 'True') {

source/Public/SQL Database/Get-FabricSQLDatabase.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ function Get-FabricSQLDatabase
7676

7777
begin
7878
{
79-
$return = @()
8079
Confirm-TokenState
8180

8281
if ($PSBoundParameters.ContainsKey("SQLDatabaseName") -and $PSBoundParameters.ContainsKey("SQLDatabaseId"))

0 commit comments

Comments
 (0)