Skip to content

Commit c54447b

Browse files
committed
Fix the variable defined but not used.
1 parent 00c0281 commit c54447b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/VersionController/Models/VersionBumper.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,11 @@ public void BumpAllVersions()
7878
public Tuple<string, bool> GetOldVersion()
7979
{
8080
string version;
81-
string localVersion = null, psVersion = null, testVersion = null;
81+
string localVersion = null;
82+
// string localVersion = null, psVersion = null, testVersion = null;
8283
bool isPreview;
83-
bool localPreview = false, psPreview = false, testPreview = false;
84+
bool localPreview = false;
85+
// bool localPreview = false, psPreview = false, testPreview = false;
8486
var moduleName = _fileHelper.ModuleName;
8587

8688
using (PowerShell powershell = PowerShell.Create())

0 commit comments

Comments
 (0)