Skip to content

Commit 07b4db9

Browse files
committed
Fixed .NET 3.5 compatibility in Installer
1 parent 7b7e39d commit 07b4db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI-Editor/MLAPIEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ IEnumerator GetReleases()
218218
if (depth == 0 && json[i] == ',')
219219
{
220220
releasesJson.Add(builder.ToString());
221-
builder.Clear();
221+
builder.Length = 0;
222222
}
223223

224224
//Parse in smaller batches

0 commit comments

Comments
 (0)