Cleanup 5

This commit is contained in:
W2.Wizard
2021-02-21 11:50:30 +01:00
parent ee76440477
commit 694b20148d
30 changed files with 93 additions and 103 deletions

View File

@@ -117,8 +117,7 @@ namespace FlaxEditor.GUI.Input
protected override void TryGetValue()
{
// Try to parse long
long value;
if (long.TryParse(Text, out value))
if (long.TryParse(Text, out long value))
{
// Set value
Value = value;