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.
We have a lot of repetition with methods in
RemoveDupes.subobject.someMethod()
implementations, where I callRemoveDupes.subobject.anotherMethod()
. Instead, I could callthis.anotherMethod()
.Too bad I can't just use
anotherMethod()
plain and simple.