remove unnecessary this qualifier

This commit is contained in:
Petrutiu Mihai
2016-06-23 22:13:11 +03:00
parent 3ecd8e332b
commit d47e43aaa5

View File

@@ -15,7 +15,7 @@ namespace ObserverPattern.Twits
IDisposable channel; IDisposable channel;
public TwitUser(string name, TwitObservable twits) public TwitUser(string name, TwitObservable twits)
{ {
this.Name = name; Name = name;
channel = twits.Subscribe(this); channel = twits.Subscribe(this);
this.twits = twits; this.twits = twits;
} }