Removed redundant literal variable name specifier.
This commit is contained in:
parent
8dcb252dc9
commit
f77734ae60
1 changed files with 2 additions and 2 deletions
|
@ -450,11 +450,11 @@ namespace OpenTK.Convert
|
|||
var words = ret.Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
|
||||
if (words[0] == "struct" || words[0] == "const")
|
||||
{
|
||||
words[1] = @group.Value;
|
||||
words[1] = group.Value;
|
||||
}
|
||||
else
|
||||
{
|
||||
words[0] = @group.Value;
|
||||
words[0] = group.Value;
|
||||
}
|
||||
|
||||
ret = String.Join(" ", words);
|
||||
|
|
Loading…
Reference in a new issue