Remove unneeded ".this"

This commit is contained in:
Alex Barney
2018-12-01 14:24:37 -06:00
parent 77972140a6
commit 267f82bd82
125 changed files with 303 additions and 303 deletions

View File

@ -26,14 +26,14 @@ namespace Ryujinx.HLE.HOS
BinaryReader requestData,
BinaryWriter responseData)
{
this.Device = device;
this.Process = process;
this.Memory = memory;
this.Session = session;
this.Request = request;
this.Response = response;
this.RequestData = requestData;
this.ResponseData = responseData;
Device = device;
Process = process;
Memory = memory;
Session = session;
Request = request;
Response = response;
RequestData = requestData;
ResponseData = responseData;
}
}
}