mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-21 01:25:42 -05:00
Address warnings and (some) nullables (#2013)
This commit is contained in:
@@ -30,7 +30,7 @@ using static Microsoft.SqlTools.ServiceLayer.IntegrationTests.Utility.LiveConnec
|
||||
|
||||
namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.DisasterRecovery
|
||||
{
|
||||
class BackupRestoreUrlTests
|
||||
internal sealed class BackupRestoreUrlTests
|
||||
{
|
||||
/// <summary>
|
||||
/// Create simple backup test
|
||||
|
||||
@@ -574,7 +574,7 @@ namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.DisasterRecovery
|
||||
string backUpFilePath = string.Empty;
|
||||
if (backupFileNames != null)
|
||||
{
|
||||
var filePaths = backupFileNames.Select(x => GetBackupFilePath(x));
|
||||
var filePaths = backupFileNames.Select(GetBackupFilePath);
|
||||
backUpFilePath = filePaths.Aggregate((current, next) => current + " ," + next);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user