1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Removed "this." from mixin

This commit is contained in:
Brian Fiete 2020-01-24 11:51:44 -08:00
parent fb7745af85
commit a669d13c42

View file

@ -2052,7 +2052,7 @@ namespace System
count++;
var stringArr = scope:mixin StringView[count];
int idx = 0;
for (var strView in this.Split(splitChar))
for (var strView in Split(splitChar))
stringArr[idx++] = strView;
stringArr
}