mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fixed local var warning
This commit is contained in:
parent
17ca23c9af
commit
27620fa35d
1 changed files with 3 additions and 3 deletions
|
@ -3136,9 +3136,9 @@ namespace IDE
|
|||
|
||||
if (projSpec.mVerSpec.Parse(data) case .Err)
|
||||
{
|
||||
var err = scope String();
|
||||
err.AppendF("Unable to parse version specifier for {0} in {1}", projectName, workspaceFileName);
|
||||
Fail(err);
|
||||
var errStr = scope String();
|
||||
errStr.AppendF("Unable to parse version specifier for {0} in {1}", projectName, workspaceFileName);
|
||||
Fail(errStr);
|
||||
LoadFailed();
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue