mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 17:20:48 -07:00
Remove unneeded ".this"
This commit is contained in:
@ -9,12 +9,12 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||
|
||||
public NodeArray(List<BaseNode> nodes) : base(NodeType.NodeArray)
|
||||
{
|
||||
this.Nodes = nodes;
|
||||
Nodes = nodes;
|
||||
}
|
||||
|
||||
public NodeArray(List<BaseNode> nodes, NodeType type) : base(type)
|
||||
{
|
||||
this.Nodes = nodes;
|
||||
Nodes = nodes;
|
||||
}
|
||||
|
||||
public override bool IsArray()
|
||||
|
Reference in New Issue
Block a user