mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 09:25:41 +00:00
Removed redundant literal variable name specifier.
This commit is contained in:
parent
8dcb252dc9
commit
f77734ae60
|
@ -450,11 +450,11 @@ namespace OpenTK.Convert
|
||||||
var words = ret.Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
|
var words = ret.Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
|
||||||
if (words[0] == "struct" || words[0] == "const")
|
if (words[0] == "struct" || words[0] == "const")
|
||||||
{
|
{
|
||||||
words[1] = @group.Value;
|
words[1] = group.Value;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
words[0] = @group.Value;
|
words[0] = group.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = String.Join(" ", words);
|
ret = String.Join(" ", words);
|
||||||
|
|
Loading…
Reference in a new issue