eyalroz / removedupes

Remove Duplicate Messages
https://addons.thunderbird.net/en-US/thunderbird/addon/removedupes/
Other
87 stars 6 forks source link

When implementing foo.bar.method(), use `this.baz` instead of `foo.bar.baz` #212

Closed eyalroz closed 4 months ago

eyalroz commented 7 months ago

We have a lot of repetition with methods in RemoveDupes.subobject.someMethod() implementations, where I call RemoveDupes.subobject.anotherMethod(). Instead, I could call this.anotherMethod().

Too bad I can't just use anotherMethod() plain and simple.