mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-14 12:12:08 -07:00
Remove unneeded ".this"
This commit is contained in:
@@ -10,9 +10,9 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||
|
||||
public ConditionalExpression(BaseNode conditionNode, BaseNode thenNode, BaseNode elseNode) : base(NodeType.ConditionalExpression)
|
||||
{
|
||||
this._thenNode = thenNode;
|
||||
this._conditionNode = conditionNode;
|
||||
this._elseNode = elseNode;
|
||||
_thenNode = thenNode;
|
||||
_conditionNode = conditionNode;
|
||||
_elseNode = elseNode;
|
||||
}
|
||||
|
||||
public override void PrintLeft(TextWriter writer)
|
||||
|
Reference in New Issue
Block a user