Skip to content

Commit 44785c6

Browse files
committed
Corrected variable naming in accordance with comments
1 parent 63c453b commit 44785c6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

samples/features/reporting-services/ssrs-migration-rss/ssrs_migration.rss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -948,12 +948,12 @@ End Function
948948

949949
'Helper function to construct correctly formatted filename
950950
Function GetSnkFilename(srcFilename As String, type As String) As String
951-
Dim currentFE As String = GetFileNameExtension(srcFilename)
951+
Dim currentFileExtension As String = GetFileNameExtension(srcFilename)
952952

953-
If SnkIsNative And (GetExtension(type) = currentFE) and currentFE <> "" Then 'Cut off file extension, if present
953+
If SnkIsNative And (GetExtension(type) = currentFileExtension) and currentFileExtension <> "" Then 'Cut off file extension, if present
954954
srcFilename = RemoveFileExtension(srcFilename)
955955

956-
ElseIf Not SnkIsNative And currentFE = "" Then 'Add file extension, if not present
956+
ElseIf Not SnkIsNative And currentFileExtension = "" Then 'Add file extension, if not present
957957
srcFilename = srcFilename + GetExtension(type)
958958
End If
959959

0 commit comments

Comments
 (0)