Fix IDE0200
This commit is contained in:
committed by
Gustas Kažukauskas
parent
ce3ad6fbb3
commit
0338258b45
@@ -198,7 +198,7 @@ namespace OpenRA.Mods.Common.Widgets
|
||||
}
|
||||
|
||||
case TextFieldType.Integer:
|
||||
return new string(input.Where(c => char.IsDigit(c)).ToArray());
|
||||
return new string(input.Where(char.IsDigit).ToArray());
|
||||
|
||||
default:
|
||||
return input;
|
||||
|
||||
Reference in New Issue
Block a user